From 5d0230c000c290ba168746cbda45ef8fbbec7fc3 Mon Sep 17 00:00:00 2001 From: MGJamJam Date: Fri, 19 Jul 2024 13:34:11 -0300 Subject: [PATCH] delete console.log and comment Firefox and Safari tests --- e2e/queryEditor.spec.ts | 1 - playwright.config.ts | 40 ++++++++++++++++++++-------------------- 2 files changed, 20 insertions(+), 21 deletions(-) diff --git a/e2e/queryEditor.spec.ts b/e2e/queryEditor.spec.ts index eeed5ca..6712b91 100644 --- a/e2e/queryEditor.spec.ts +++ b/e2e/queryEditor.spec.ts @@ -59,7 +59,6 @@ test('should trigger correct number of queries with correct payload', async ({ let queryCounter = 0; await page.route('*/**/analytics/queries/count', (route) => { queryCounter++; - console.log('Im here in the page router qith queryCounter', queryCounter); route.abort(); }); // read and select datasource diff --git a/playwright.config.ts b/playwright.config.ts index 26cd620..d2eb420 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -52,26 +52,26 @@ 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'], - }, + // { + // 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. */ // {