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 7764977 commit 11defa5Copy full SHA for 11defa5
tests/e2e/notes.test.ts
@@ -10,11 +10,6 @@ test('Users can create notes', async ({ page }) => {
10
const newNote = createNote()
11
await page.getByRole('link', { name: /New Note/i }).click()
12
13
- // blank form submission should result in errors
14
- await page.getByRole('button', { name: /submit/i }).click()
15
- // count errors
16
- await expect(page.getByText('Required')).toHaveCount(2)
17
-
18
// fill in form and submit
19
await page.getByRole('textbox', { name: /title/i }).fill(newNote.title)
20
await page.getByRole('textbox', { name: /content/i }).fill(newNote.content)
0 commit comments