app_specs.ts 250 B

1234567891011121314
  1. import {describe, beforeEach, it, sinon, expect} from 'test/lib/common';
  2. import {GrafanaApp} from 'app/app';
  3. describe('GrafanaApp', () => {
  4. var app = new GrafanaApp();
  5. it('can call inits', () => {
  6. expect(app).to.not.be(null);
  7. });
  8. });