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