diff --git a/playwright.config.ts b/playwright.config.ts index d2eb420..0bae54e 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -52,52 +52,5 @@ export default defineConfig({ }, dependencies: ['auth'], }, - // { - // name: 'run-tests Firefox', - // use: { - // ...devices['Desktop Firefox'], - // // @grafana/plugin-e2e writes the auth state to this file, - // // the path should not be modified - // storageState: 'playwright/.auth/admin.json', - // }, - // dependencies: ['auth'], - // }, - // { - // name: 'run-tests Safari', - // use: { - // ...devices['Desktop Safari'], - // // @grafana/plugin-e2e writes the auth state to this file, - // // the path should not be modified - // storageState: 'playwright/.auth/admin.json', - // }, - // dependencies: ['auth'], - // }, - - /* Test against mobile viewports. */ - // { - // name: 'Mobile Chrome', - // use: { ...devices['Pixel 5'] }, - // }, - // { - // name: 'Mobile Safari', - // use: { ...devices['iPhone 12'] }, - // }, - - /* Test against branded browsers. */ - // { - // name: 'Microsoft Edge', - // use: { ...devices['Desktop Edge'], channel: 'msedge' }, - // }, - // { - // name: 'Google Chrome', - // use: { ...devices['Desktop Chrome'], channel: 'chrome' }, - // }, ], - - /* Run your local dev server before starting the tests */ - // webServer: { - // command: 'npm run start', - // url: 'http://127.0.0.1:3000', - // reuseExistingServer: !process.env.CI, - // }, });