dashboard_srv_specs.ts 342 B

123456789101112131415
  1. import { describe, beforeEach, expect } from 'test/lib/common';
  2. import { DashboardSrv } from '../dashboard_srv';
  3. describe('dashboardSrv', function() {
  4. var _dashboardSrv;
  5. beforeEach(() => {
  6. _dashboardSrv = new DashboardSrv({}, {}, {});
  7. });
  8. it('should do something', () => {
  9. expect(_dashboardSrv).not.to.be(null);
  10. });
  11. });