mirror of
https://github.com/grafana/grafana.git
synced 2024-11-25 18:30:41 -06:00
c94468339c
add smoke test to cloudwatch
9 lines
417 B
TypeScript
9 lines
417 B
TypeScript
import { test, expect } from '@grafana/plugin-e2e';
|
|
|
|
test('Smoke test: decoupled frontend plugin loads', async ({ createDataSourceConfigPage, page }) => {
|
|
await createDataSourceConfigPage({ type: 'cloudwatch' });
|
|
|
|
await expect(await page.getByText('Type: CloudWatch', { exact: true })).toBeVisible();
|
|
await expect(await page.getByRole('heading', { name: 'Connection Details', exact: true })).toBeVisible();
|
|
});
|