Skip to content

Commit

Permalink
Update test-fixtures-js.md (microsoft#29283)
Browse files Browse the repository at this point in the history
  • Loading branch information
scramlo authored Feb 13, 2024
1 parent 7aef524 commit 2550ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/test-fixtures-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -1080,4 +1080,4 @@ import { test } from './fixtures';
test('passes', async ({ database, page, a11y }) => {
// use database and a11y fixtures.
});
```
```

0 comments on commit 2550ba3

Please sign in to comment.