From 2fe5fa6aaf2fc2ad54d71365f65a4d28dae90075 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 11 Apr 2024 13:36:02 -0700 Subject: [PATCH] fix lint --- packages/playwright/src/runner/taskRunner.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/src/runner/taskRunner.ts b/packages/playwright/src/runner/taskRunner.ts index 924438141f..5312cb2f7e 100644 --- a/packages/playwright/src/runner/taskRunner.ts +++ b/packages/playwright/src/runner/taskRunner.ts @@ -107,7 +107,7 @@ export class TaskRunner { cancelPromise?.resolve(); const cleanup = async () => { // Upon hitting deadline we add extra 30s to actually perform cleanup, otherwise - // the task exits immediately because of the same deadline and we may continue + // the task exits immediately because of the same deadline and we may continue // while the test workers are still running. const extraTime = timeoutWatcher.timedOut() ? 30_000 : 0; const { status } = await teardownRunner.runDeferCleanup(context, deadline + extraTime);