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