]> git.apps.os.sepia.ceph.com Git - ceph.git/blob
da68def0b62d7a35cb4020f327cff26f0d3ea312
[ceph.git] /
1 import { async, ComponentFixture, TestBed } from '@angular/core/testing';
2
3 import { AlertModule } from 'ngx-bootstrap';
4
5 import { ViewCacheComponent } from './view-cache.component';
6
7 describe('ViewCacheComponent', () => {
8   let component: ViewCacheComponent;
9   let fixture: ComponentFixture<ViewCacheComponent>;
10
11   beforeEach(async(() => {
12     TestBed.configureTestingModule({
13       declarations: [ ViewCacheComponent ],
14       imports: [AlertModule.forRoot()]
15     })
16     .compileComponents();
17   }));
18
19   beforeEach(() => {
20     fixture = TestBed.createComponent(ViewCacheComponent);
21     component = fixture.componentInstance;
22     fixture.detectChanges();
23   });
24
25   it('should create', () => {
26     expect(component).toBeTruthy();
27   });
28 });