| 1234567891011121314 |
- 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);
- });
- });
|