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