mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
16 lines
342 B
TypeScript
16 lines
342 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);
|
|
});
|
|
});
|