mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
9 lines
366 B
TypeScript
9 lines
366 B
TypeScript
import { expect, test } from '@grafana/plugin-e2e';
|
|
|
|
import { formatExpectError } from '../errors';
|
|
|
|
test('query data response should be OK when query is valid', async ({ explorePage }) => {
|
|
await explorePage.datasource.set('gdev-testdata');
|
|
await expect(explorePage.runQuery(), formatExpectError('Expected Explore query to execute successfully')).toBeOK();
|
|
});
|