13 lines
328 B
TypeScript
13 lines
328 B
TypeScript
|
import { TestBed } from '@angular/core/testing';
|
||
|
|
||
|
import { ChartService } from './chart.service';
|
||
|
|
||
|
describe('ChartService', () => {
|
||
|
beforeEach(() => TestBed.configureTestingModule({}));
|
||
|
|
||
|
it('should be created', () => {
|
||
|
const service: ChartService = TestBed.get(ChartService);
|
||
|
expect(service).toBeTruthy();
|
||
|
});
|
||
|
});
|