Files
grafana-zabbix/tests/e2e/smoke.test.ts
Gareth Dawson 525217ddad Add E2E smoke test (#1962)
creates a smoke test for the zabbix data source

closes https://github.com/grafana/data-sources/issues/194
2025-02-04 18:04:07 +07:00

9 lines
409 B
TypeScript

import { test, expect } from '@grafana/plugin-e2e';
test('Smoke test: plugin loads', async ({ createDataSourceConfigPage, page }) => {
await createDataSourceConfigPage({ type: 'alexanderzobnin-zabbix-datasource' });
await expect(await page.getByText('Type: Zabbix', { exact: true })).toBeVisible();
await expect(await page.getByRole('heading', { name: 'Connection', exact: true })).toBeVisible();
});