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