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 47dbc41 + 04a8033 commit 74a7e34Copy full SHA for 74a7e34
src/content/5/en/part5d.md
@@ -1008,8 +1008,8 @@ describe('when logged in', () => {
1008
describe('and several notes exists', () => {
1009
beforeEach(async ({ page }) => {
1010
// highlight-start
1011
- await createNote(page, 'first note', true)
1012
- await createNote(page, 'second note', true)
+ await createNote(page, 'first note')
+ await createNote(page, 'second note')
1013
// highlight-end
1014
})
1015
@@ -1095,9 +1095,9 @@ describe('when logged in', () => {
1095
1096
describe('and a note exists', () => {
1097
1098
1099
1100
- await createNote(page, 'third note', true) // highlight-line
+ await createNote(page, 'third note') // highlight-line
1101
1102
1103
test('importance can be changed', async ({ page }) => {
0 commit comments