import { test, expect } from '@grafana/plugin-e2e'; test( 'Smoke test: decoupled frontend plugin loads', { tag: '@plugins', }, async ({ createDataSourceConfigPage, page }) => { await createDataSourceConfigPage({ type: 'mssql' }); await expect(await page.getByText('Type: Microsoft SQL Server', { exact: true })).toBeVisible(); await expect(await page.getByRole('heading', { name: 'Connection', exact: true })).toBeVisible(); } );