فهرست منبع

refactoring tests

Erik Sundell 7 سال پیش
والد
کامیت
e71e2b3035
1فایلهای تغییر یافته به همراه5 افزوده شده و 1 حذف شده
  1. 5 1
      public/app/plugins/datasource/stackdriver/components/QueryEditor.test.tsx

+ 5 - 1
public/app/plugins/datasource/stackdriver/components/QueryEditor.test.tsx

@@ -7,7 +7,11 @@ const props: Props = {
   onExecuteQuery: () => {},
   target: DefaultTarget,
   events: { on: () => {} },
-  datasource: { templateSrv: { variables: [] } },
+  datasource: {
+    templateSrv: { variables: [] },
+    getDefaultProject: () => 'project',
+    getMetricTypes: () => [],
+  },
 };
 
 describe('QueryEditor', () => {