Explorar o código

Begin conversion

Tobias Skarhed %!s(int64=7) %!d(string=hai) anos
pai
achega
61e3a0cceb
Modificáronse 1 ficheiros con 10 adicións e 0 borrados
  1. 10 0
      public/test/specs/app.jest.ts

+ 10 - 0
public/test/specs/app.jest.ts

@@ -0,0 +1,10 @@
+import { GrafanaApp } from 'app/app';
+jest.mock('app/routes/routes');
+
+describe('GrafanaApp', () => {
+  var app = new GrafanaApp();
+
+  it('can call inits', () => {
+    expect(app).not.toBe(null);
+  });
+});