angular-d3-graph
Version:
Component for rendering a line graph or bar graph.
16 lines (12 loc) • 368 B
text/typescript
import { TestBed, inject } from '@angular/core/testing';
import { GraphService } from './graph.service';
describe('GraphService', () => {
beforeEach(() => {
TestBed.configureTestingModule({
providers: [GraphService]
});
});
it('should be created', inject([GraphService], (service: GraphService) => {
expect(service).toBeTruthy();
}));
});