import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { ModalWarningComponent } from './modal-warning.component'; describe('ModalWarningComponent', () => { let component: ModalWarningComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ ModalWarningComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(ModalWarningComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });