Chore: Move Prometheus datasorce tests from specs folder and merge duplicated test files (#20755)

This commit is contained in:
Ivana Huckova
2019-12-02 18:14:26 +01:00
committed by GitHub
parent 87d19787b4
commit e68e93f595
9 changed files with 1843 additions and 1885 deletions

View File

@@ -0,0 +1,8 @@
import { plugin as PrometheusDatasourcePlugin } from './module';
describe('module', () => {
it('should have metrics query field in panels and Explore', () => {
expect(PrometheusDatasourcePlugin.components.ExploreMetricsQueryField).toBeDefined();
expect(PrometheusDatasourcePlugin.components.QueryEditor).toBeDefined();
});
});