/* tslint:disable:no-unused-variable */ import { async, ComponentFixture, TestBed } from '@angular/core/testing'; import { By } from '@angular/platform-browser'; import { DebugElement } from '@angular/core'; import { CustomAlertComponent } from './custom-alert.component'; describe('CustomAlertComponent', () => { let component: CustomAlertComponent; let fixture: ComponentFixture; beforeEach(async(() => { TestBed.configureTestingModule({ declarations: [ CustomAlertComponent ] }) .compileComponents(); })); beforeEach(() => { fixture = TestBed.createComponent(CustomAlertComponent); component = fixture.componentInstance; fixture.detectChanges(); }); it('should create', () => { expect(component).toBeTruthy(); }); });