From 69c4653c6b12b9ce94cdc85febff0a33c76ac9b4 Mon Sep 17 00:00:00 2001 From: Pavel Feldman Date: Thu, 9 Feb 2023 16:04:07 -0800 Subject: [PATCH] chore: speculative windows cli fix (#20801) --- tests/playwright-test/watch.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/watch.spec.ts b/tests/playwright-test/watch.spec.ts index 43f017dcda..7fd9f68142 100644 --- a/tests/playwright-test/watch.spec.ts +++ b/tests/playwright-test/watch.spec.ts @@ -208,8 +208,8 @@ test('should respect project filter C', async ({ runWatchTest }) => { testProcess.clearOutput(); testProcess.write('c'); await testProcess.waitForOutput('Select projects'); - await testProcess.waitForOutput('✔ foo'); - await testProcess.waitForOutput('✔ bar'); + await testProcess.waitForOutput('foo'); + await testProcess.waitForOutput('bar'); testProcess.write(' '); testProcess.write('\r\n'); await testProcess.waitForOutput('npx playwright test --project foo #1');