Partner data sources smoke tests (#98446)

* Add smoke tests for remaining partner data sources

* Fix test names and run them

* Use text check for gcm
This commit is contained in:
Andreas Christou
2025-01-03 11:52:15 +00:00
committed by GitHub
parent 937e8dea2d
commit deab83a958
6 changed files with 85 additions and 0 deletions
@@ -0,0 +1,8 @@
import { test, expect } from '@grafana/plugin-e2e';
test('Smoke test: decoupled frontend plugin loads', async ({ createDataSourceConfigPage, page }) => {
await createDataSourceConfigPage({ type: 'stackdriver' });
await expect(await page.getByText('Type: Google Cloud Monitoring', { exact: true })).toBeVisible();
await expect(await page.getByText('Google JWT File', { exact: true })).toBeVisible();
});