Skip to content

Commit

Permalink
delete console.log and comment Firefox and Safari tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MGJamJam committed Jul 19, 2024
1 parent 3a7a57c commit 5d0230c
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 21 deletions.
1 change: 0 additions & 1 deletion e2e/queryEditor.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
40 changes: 20 additions & 20 deletions playwright.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,26 +52,26 @@ export default defineConfig<PluginOptions>({
},
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. */
// {
Expand Down

0 comments on commit 5d0230c

Please sign in to comment.