* add playwright test and plugin-e2e * run tests in ci * add ds config tests * add panel edit tests * add annotation test * add variable edit page tests * add explore page tests * add panel plugin tests * add readme * remove comments * fix broken test * remove user.json * remove newline in starlark * fix lint issue * ignore failure of playwright tests * update code owners * add detailed error messages in every expect * update message frame * fix link * upload report to gcp * echo url * add playwright developer guide * bump plugin-e2e * add custom provisioning dir * update plugin-e2e * remove not used imports * fix typo * minor fixes * use latest version of plugin-e2e * fix broken link * use latest plugin-e2e * add feature toggle scenario verification tests * bump version * use auth file from package * fix type error * add panel data assertions * rename parent dir and bump version * fix codeowners * reset files * remove not used file * update plugin-e2e * separate tests per role * pass prov dir * skip using provisioning fixture * wip * fix permission test * move to e2e dir * fix path to readme * post comment with report url * format starlark * post comment with report url * post comment with report url * fix token * make test fail * fix exit code * bump version * bump to latest plugin-e2e * revert reporting message * remove comments * readding report comment * change exit code * format starlark * force test to fail * add new step that posts comment * fix link * use latest playwright image * fix failing test * format starlark * remove unused fixture Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com> --------- Co-authored-by: Marcus Andersson <marcus.andersson@grafana.com>
16 lines
646 B
TypeScript
16 lines
646 B
TypeScript
import { expect, test } from '@grafana/plugin-e2e';
|
|
|
|
test('should redirect to start page when permissions to navigate to page is missing', async ({ page }) => {
|
|
await page.goto('/');
|
|
const homePageTitle = await page.title();
|
|
await page.goto('/datasources', { waitUntil: 'networkidle' });
|
|
expect(await page.title()).toEqual(homePageTitle);
|
|
});
|
|
|
|
test('current user should have viewer role', async ({ page, request }) => {
|
|
await page.goto('/');
|
|
const response = await request.get('/api/user/orgs');
|
|
await expect(response).toBeOK();
|
|
await expect(await response.json()).toContainEqual(expect.objectContaining({ role: 'Viewer' }));
|
|
});
|