src/app/core/common-components/pill/pill.component.spec.ts
import { ComponentFixture, TestBed } from "@angular/core/testing";
import { PillComponent } from "./pill.component";
describe("PillComponent", () => {
let component: PillComponent;
let fixture: ComponentFixture<PillComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [PillComponent],
}).compileComponents();
fixture = TestBed.createComponent(PillComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it("should create", () => {
expect(component).toBeTruthy();
});
});