From d1fa257adaed36efa119336ed05847f6164268c2 Mon Sep 17 00:00:00 2001 From: Stevan Freeborn <65925598+StevanFreeborn@users.noreply.github.com> Date: Mon, 26 Feb 2024 23:00:49 -0600 Subject: [PATCH] chore: run npm run build, lint, and doc --- packages/playwright/types/test.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index cc46e14f50..4791b9d42f 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -5586,7 +5586,7 @@ export interface PlaywrightWorkerOptions { * - `'retain-on-failure'`: Record trace for each test, but remove all traces from successful test runs. * - `'on-first-retry'`: Record trace only when retrying a test for the first time. * - `'on-all-retries'`: Record traces only when retrying for all retries. - * - `'on-first-failure'`: Record traces only when the test fails for the first time. + * - `'retain-on-first-failure'`: Record traces only when the test fails for the first time. * * For more control, pass an object that specifies `mode` and trace features to enable. *