Skip to content

Commit 8a19438

Browse files
committed
03/01: remove test actions
1 parent 67d6c9f commit 8a19438

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

exercises/03.guides/01.problem.recording-interactions/tests/e2e/profile-edit.test.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,16 +7,4 @@ test('saves changes to the name of the user', async ({
77
}) => {
88
await authenticate({ as: 'user' })
99
await navigate('/settings/profile')
10-
11-
await page.getByRole('textbox', { name: 'Name', exact: true }).click()
12-
await page
13-
.getByRole('textbox', { name: 'Name', exact: true })
14-
.press('ControlOrMeta+a')
15-
await page
16-
.getByRole('textbox', { name: 'Name', exact: true })
17-
.fill('John Doe')
18-
await page.getByRole('button', { name: 'Save changes' }).click()
19-
await page.getByRole('link', { name: 'John Doe John Doe' }).click()
20-
await page.getByRole('menuitem', { name: 'Profile' }).click()
21-
await expect(page.getByRole('heading', { name: 'John Doe' })).toBeVisible()
2210
})

0 commit comments

Comments
 (0)