We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ca8c0eb + d63447e commit bfc1686Copy full SHA for bfc1686
src/content/5/en/part5d.md
@@ -900,13 +900,13 @@ describe('Note app', () => {
900
})
901
902
test('a new note can be created', async ({ page }) => {
903
- await createNote(page, 'a note created by playwright', true) // highlight-line
+ await createNote(page, 'a note created by playwright') // highlight-line
904
await expect(page.getByText('a note created by playwright')).toBeVisible()
905
906
907
describe('and a note exists', () => {
908
beforeEach(async ({ page }) => {
909
- await createNote(page, 'another note by playwright', true) // highlight-line
+ await createNote(page, 'another note by playwright') // highlight-line
910
911
912
test('importance can be changed', async ({ page }) => {
0 commit comments