From 0bfe8407ce946acb63fe110d88eb34debec0a073 Mon Sep 17 00:00:00 2001 From: Simon Knott Date: Tue, 17 Sep 2024 16:33:51 +0200 Subject: [PATCH] fix with main --- tests/playwright-test/watch.spec.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/tests/playwright-test/watch.spec.ts b/tests/playwright-test/watch.spec.ts index f03c0d82e0..93eb9b059c 100644 --- a/tests/playwright-test/watch.spec.ts +++ b/tests/playwright-test/watch.spec.ts @@ -827,10 +827,9 @@ test('should stop testrun on pressing escape', async ({ runWatchTest }) => { }); `, }); - // add once https://github.com/microsoft/playwright/pull/32583 lands - // await testProcess.waitForOutput('Waiting for file changes.'); - // testProcess.clearOutput(); - // testProcess.write('\r\n'); + await testProcess.waitForOutput('Waiting for file changes.'); + testProcess.clearOutput(); + testProcess.write('\r\n'); await testProcess.waitForOutput('Running 1 test'); await timers.setTimeout(500);