From e28c44eaa2b647c72f42f0d2565f0a3e3d339693 Mon Sep 17 00:00:00 2001 From: Adam Stone-Lord Date: Fri, 11 Aug 2023 13:59:02 -0400 Subject: [PATCH] chore: skip flaky system tests (#27533) --- system-tests/test/cdp_spec.ts | 1 + system-tests/test/screenshot_fullpage_capture_spec.js | 1 + 2 files changed, 2 insertions(+) diff --git a/system-tests/test/cdp_spec.ts b/system-tests/test/cdp_spec.ts index 82f7e1f81734..d5413dd48ed3 100644 --- a/system-tests/test/cdp_spec.ts +++ b/system-tests/test/cdp_spec.ts @@ -20,5 +20,6 @@ describe('e2e cdp', function () { project: 'remote-debugging-disconnect', spec: 'spec.cy.ts', browser: 'chrome', + skip: true, // TODO: Investigate and unskip flaky test }) }) diff --git a/system-tests/test/screenshot_fullpage_capture_spec.js b/system-tests/test/screenshot_fullpage_capture_spec.js index a89f183ddce5..6f79c6dd1613 100644 --- a/system-tests/test/screenshot_fullpage_capture_spec.js +++ b/system-tests/test/screenshot_fullpage_capture_spec.js @@ -24,5 +24,6 @@ describe('e2e screenshot fullPage capture', () => { systemTests.it('passes', { spec: 'screenshot_fullpage_capture.cy.js', snapshot: true, + browser: '!firefox', // This test is flaky on Firefox }) })