From f31e4ccf044c1744edf3a94f895ef823a509fd0f Mon Sep 17 00:00:00 2001 From: Philip Pfaffe Date: Mon, 4 Nov 2024 15:29:25 +0000 Subject: [PATCH] [e2e] skip flaky workflows test Bug: 377280477 Change-Id: I32b1dba2d15f8fed437f4b7f079c4b093a652c91 Reviewed-on: https://chromium-review.googlesource.com/c/devtools/devtools-frontend/+/5987918 Commit-Queue: Philip Pfaffe Reviewed-by: Alex Rudenko Commit-Queue: Alex Rudenko Auto-Submit: Philip Pfaffe --- test/e2e/cross_tool_integration/workflow_test.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/e2e/cross_tool_integration/workflow_test.ts b/test/e2e/cross_tool_integration/workflow_test.ts index 968ae304cab..2d2690dc7f5 100644 --- a/test/e2e/cross_tool_integration/workflow_test.ts +++ b/test/e2e/cross_tool_integration/workflow_test.ts @@ -102,7 +102,8 @@ describe('A user can move tabs', function() { }); describe('A user can open panels via the "panel" query param', function() { - it('Layers is shown', async () => { + // Flaky on windows + it.skipOnPlatforms(['win32'], '[crbug.com/377280477] Layers is shown', async () => { await reloadDevTools({queryParams: {panel: 'layers'}}); await tabExistsInMainPanel(LAYERS_TAB_SELECTOR); });