@swimlane/ngx-charts
Version:
Declarative Charting Framework for Angular2 and beyond!
18 lines (12 loc) • 402 B
text/typescript
/// <reference path="../node_modules/@types/jasmine/index.d.ts" />
import { NgxChartsModule } from '.';
/*
This file is to import the main module. By importing it into this
spec file, all the attached components get traversed and recognized
in the code coverage stats.
*/
describe('ngx-charts Module', () => {
it('should load', () => {
expect(NgxChartsModule).toBeDefined();
});
});