Files
grafana/public/test/specs/app_specs.ts
Andrzej Ressel c4b57a2562 Revert files
2018-04-08 20:40:09 +02:00

15 lines
231 B
TypeScript

import {describe, it, 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);
});
});