From be77c619f3e52da8fc6dd1bdf77ff9e375d033a1 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 27 Aug 2024 16:50:04 -0700 Subject: [PATCH] fix lint --- docs/src/test-fixtures-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/test-fixtures-js.md b/docs/src/test-fixtures-js.md index 82fb7d987a..f8c5cabc58 100644 --- a/docs/src/test-fixtures-js.md +++ b/docs/src/test-fixtures-js.md @@ -737,7 +737,7 @@ export const test = base.extend({ await use(); // This code runs after every test. console.log('Last URL:', page.url()); - }, { auto: true }], // starts automatically for every test, we pass "auto" for that. + }, { auto: true }], // automatically starts for every test. }); ``` @@ -767,7 +767,7 @@ export const test = base.extend({ await use(); // This code runs after all the tests in the worker process. console.log(`Stopping test worker ${test.info().workerIndex}`); - }, { scope: 'worker', auto: true }], // starts automatically for every worker, we pass "auto" for that. + }, { scope: 'worker', auto: true }], // automatically starts for every worker. }); ```