From 2550ba33966436d12df1ace8840727f9ce8dc6d1 Mon Sep 17 00:00:00 2001 From: Brian Scramlin Date: Tue, 13 Feb 2024 14:28:34 -0500 Subject: [PATCH] Update test-fixtures-js.md (#29283) --- 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 33febcb5aa..48c9d074ba 100644 --- a/docs/src/test-fixtures-js.md +++ b/docs/src/test-fixtures-js.md @@ -5,7 +5,7 @@ title: "Fixtures" ## Introduction -Playwright Test is based on the concept of test fixtures. Test fixtures are used to establish environment for each test, giving the test everything it needs and nothing else. Test fixtures are isolated between tests. With fixtures, you can group tests based on their meaning, instead of their common setup. +Playwright Test is based on the concept of test fixtures. Test fixtures are used to establish the environment for each test, giving the test everything it needs and nothing else. Test fixtures are isolated between tests. With fixtures, you can group tests based on their meaning, instead of their common setup. ### Built-in fixtures @@ -1080,4 +1080,4 @@ import { test } from './fixtures'; test('passes', async ({ database, page, a11y }) => { // use database and a11y fixtures. }); -``` \ No newline at end of file +```