diff --git a/e2e/playwright-ci.config.js b/e2e/playwright-ci.config.js index fa55b0bbad..4297ee7056 100644 --- a/e2e/playwright-ci.config.js +++ b/e2e/playwright-ci.config.js @@ -12,7 +12,6 @@ const config = { retries: 2, //Retries 2 times for a total of 3 runs. When running sharded and with maxFailures = 5, this should ensure that flake is managed without failing the full suite testDir: 'tests', testIgnore: '**/*.perf.spec.js', //Ignore performance tests and define in playwright-perfromance.config.js - timeout: 60 * 1000, webServer: { command: 'npm run start:coverage', url: 'http://localhost:8080/#', diff --git a/e2e/tests/performance/memleak-imagery.perf.spec.js b/e2e/tests/performance/memleak-imagery.perf.spec.js index 066c385910..037e894484 100644 --- a/e2e/tests/performance/memleak-imagery.perf.spec.js +++ b/e2e/tests/performance/memleak-imagery.perf.spec.js @@ -37,7 +37,7 @@ const { test, expect } = require('@playwright/test'); const filePath = 'e2e/test-data/PerformanceDisplayLayout.json'; // eslint-disable-next-line playwright/no-skipped-test -test.describe.skip('Memory Performance tests', () => { +test.describe('Memory Performance tests', () => { test.beforeEach(async ({ page, browser }, testInfo) => { // Go to baseURL await page.goto('./', { waitUntil: 'networkidle' });