Skip to content

Commit 8ed2fe3

Browse files
authored
Merge pull request #3575 from guymelef/patch-2
fix typo: describre -> describe
2 parents ffc7fe4 + 556ce12 commit 8ed2fe3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/content/5/en/part5d.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ test('login fails with wrong password', async ({ page }) =>{
734734
By default, Playwright always runs all tests, and as the number of tests increases, it becomes time-consuming. When developing a new test or debugging a broken one, the test can be defined instead of the command <i>test</i> with the command <i>test.only</i>, in which case Playwright will run only that test:
735735
736736
```js
737-
describre(() => {
737+
describe(() => {
738738
// this is the only test executed!
739739
test.only('login fails with wrong password', async ({ page }) => { // highlight-line
740740
// ...

0 commit comments

Comments
 (0)