2017-12-20 05:33:33 -06:00
|
|
|
import { describe, beforeEach, expect } from 'test/lib/common';
|
2016-09-19 03:08:05 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
import { DashboardSrv } from '../dashboard_srv';
|
2016-09-19 03:08:05 -05:00
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
describe('dashboardSrv', function() {
|
2016-09-19 03:08:05 -05:00
|
|
|
var _dashboardSrv;
|
|
|
|
|
|
|
|
beforeEach(() => {
|
2016-10-15 01:00:48 -05:00
|
|
|
_dashboardSrv = new DashboardSrv({}, {}, {});
|
2016-09-19 03:08:05 -05:00
|
|
|
});
|
|
|
|
|
2017-12-20 05:33:33 -06:00
|
|
|
it('should do something', () => {
|
2017-11-27 05:14:57 -06:00
|
|
|
expect(_dashboardSrv).not.to.be(null);
|
|
|
|
});
|
2016-09-19 03:08:05 -05:00
|
|
|
});
|