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.
1 parent 429024a commit ad270edCopy full SHA for ad270ed
src/content/5/fi/osa5d.md
@@ -872,13 +872,13 @@ describe('Note app', () => {
872
})
873
874
test('a new note can be created', async ({ page }) => {
875
- await createNote(page, 'a note created by playwright', true)
+ await createNote(page, 'a note created by playwright')
876
await expect(page.getByText('a note created by playwright')).toBeVisible()
877
878
879
describe('and a note exists', () => {
880
beforeEach(async ({ page }) => {
881
- await createNote(page, 'another note by playwright', true)
+ await createNote(page, 'another note by playwright')
882
883
884
test('importance can be changed', async ({ page }) => {
0 commit comments