grafana_bak/e2e/plugin-e2e/zipkin/zipkin.spec.ts
2025-04-01 10:38:02 +09:00

9 lines
382 B
TypeScript

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