mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
15 lines
250 B
TypeScript
15 lines
250 B
TypeScript
import {describe, beforeEach, it, sinon, expect} from 'test/lib/common';
|
|
|
|
import {GrafanaApp} from 'app/app';
|
|
|
|
describe('GrafanaApp', () => {
|
|
|
|
var app = new GrafanaApp();
|
|
|
|
it('can call inits', () => {
|
|
expect(app).to.not.be(null);
|
|
});
|
|
});
|
|
|
|
|