23 lines
628 B
TypeScript
23 lines
628 B
TypeScript
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
|
|
|
import { PopupComponent } from './popup.component';
|
|
|
|
describe('PopupComponent', () => {
|
|
let component: PopupComponent;
|
|
let fixture: ComponentFixture<PopupComponent>;
|
|
|
|
beforeEach(async () => {
|
|
await TestBed.configureTestingModule({
|
|
declarations: [PopupComponent],
|
|
}).compileComponents();
|
|
|
|
fixture = TestBed.createComponent(PopupComponent);
|
|
component = fixture.componentInstance;
|
|
fixture.detectChanges();
|
|
});
|
|
|
|
it('should create', () => {
|
|
expect(component).toBeTruthy();
|
|
});
|
|
});
|