grafana/public/app/features/dashboard/specs/dashboard_srv_specs.ts
Torkel Ödegaard df2d49da33 test fix
2017-11-27 12:16:40 +01:00

16 lines
338 B
TypeScript

import {describe, beforeEach, expect} from 'test/lib/common';
import {DashboardSrv} from '../dashboard_srv';
describe('dashboardSrv', function() {
var _dashboardSrv;
beforeEach(() => {
_dashboardSrv = new DashboardSrv({}, {}, {});
});
it("should do something", () => {
expect(_dashboardSrv).not.to.be(null);
});
});