From e9cdc076dda1edd487dbc59a8ff08aaea71a5187 Mon Sep 17 00:00:00 2001 From: Colum Ferry Date: Thu, 26 Sep 2024 17:07:13 +0100 Subject: [PATCH] chore(react): fix e2e --- e2e/react/src/react.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/react/src/react.test.ts b/e2e/react/src/react.test.ts index f9949b19cb..e627fda2f5 100644 --- a/e2e/react/src/react.test.ts +++ b/e2e/react/src/react.test.ts @@ -92,7 +92,7 @@ describe('React Applications', () => { if (runE2ETests()) { // TODO(Colum): investigate why webkit is failing - const e2eResults = runCLI(`e2e ${appName}-e2e --project=chromium`); + const e2eResults = runCLI(`e2e ${appName}-e2e -- --project=chromium`); expect(e2eResults).toContain('Successfully ran target e2e for project'); expect(await killPorts()).toBeTruthy(); }