mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
13 lines
278 B
TypeScript
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({}, {}, {});
|
|
});
|
|
|
|
});
|