From 3b511f10188c381260013ffaa56eb4b7500d2f5a Mon Sep 17 00:00:00 2001 From: Francesco Novy Date: Mon, 3 Feb 2025 16:33:19 +0100 Subject: [PATCH] fix linting --- .../browser-integration-tests/scripts/detectFlakyTests.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts b/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts index 75db0283c296..1105346562c9 100644 --- a/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts +++ b/dev-packages/browser-integration-tests/scripts/detectFlakyTests.ts @@ -46,7 +46,9 @@ ${changedPaths.join('\n')} try { await new Promise((resolve, reject) => { const cp = childProcess.spawn( - `npx playwright test ${testPaths.length ? testPaths.join(' ') : './suites'} --repeat-each ${repeatEachCount} --project=chromium`, + `npx playwright test ${ + testPaths.length ? testPaths.join(' ') : './suites' + } --repeat-each ${repeatEachCount} --project=chromium`, { shell: true, cwd, stdio: 'inherit' }, );