فهرست منبع

stackdriver: update tests

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

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

@@ -4,7 +4,7 @@ import { StackdriverTemplateQueryComponent } from './TemplateQueryComponent';
 import { TemplateQueryProps } from 'app/types/plugins';
 
 jest.mock('../functions', () => ({
-  getMetricTypes: () => Promise.resolve({ metricTypes: [], selectedMetricType: '' }),
+  getMetricTypes: async () => ({ metricTypes: [], selectedMetricType: '' }),
   extractServicesFromMetricDescriptors: m => m,
 }));