mirror of
https://github.com/grafana/grafana.git
synced 2025-02-20 11:48:34 -06:00
9 lines
341 B
TypeScript
9 lines
341 B
TypeScript
|
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();
|
||
|
});
|
||
|
});
|