Files
grafana/public/app/features/dashboard/specs/dashboard_srv_specs.ts

13 lines
278 B
TypeScript

import {describe, beforeEach, it, sinon, expect, angularMocks} from 'test/lib/common';
import {DashboardSrv} from '../dashboard_srv';
describe('dashboardSrv', function() {
var _dashboardSrv;
beforeEach(() => {
_dashboardSrv = new DashboardSrv({}, {}, {});
});
});