Erik Sundell 7 лет назад
Родитель
Сommit
209b1c026e

+ 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,
 }));