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