mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
9 lines
415 B
TypeScript
9 lines
415 B
TypeScript
import { test, expect } from '@grafana/plugin-e2e';
|
|
|
|
test('Smoke test: decoupled frontend plugin loads', async ({ createDataSourceConfigPage, page }) => {
|
|
await createDataSourceConfigPage({ type: 'elasticsearch' });
|
|
|
|
await expect(await page.getByText('Type: Elasticsearch', { exact: true })).toBeVisible();
|
|
await expect(await page.getByRole('heading', { name: 'Connection', exact: true })).toBeVisible();
|
|
});
|