1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
3 import { AlertModule } from 'ngx-bootstrap';
5 import { ViewCacheComponent } from './view-cache.component';
7 describe('ViewCacheComponent', () => {
8 let component: ViewCacheComponent;
9 let fixture: ComponentFixture<ViewCacheComponent>;
11 beforeEach(async(() => {
12 TestBed.configureTestingModule({
13 declarations: [ ViewCacheComponent ],
14 imports: [AlertModule.forRoot()]
20 fixture = TestBed.createComponent(ViewCacheComponent);
21 component = fixture.componentInstance;
22 fixture.detectChanges();
25 it('should create', () => {
26 expect(component).toBeTruthy();