fix: add space to "Firstname" and "Lastname" label (#31)

Co-authored-by: Elias Schneider <login@eliasschneider.com>
This commit is contained in:
edbourque0
2024-09-26 03:33:02 -04:00
committed by GitHub
parent 3c67765992
commit d6a9bb4c09
4 changed files with 14 additions and 14 deletions

View File

@@ -8,8 +8,8 @@ test.beforeEach(cleanupBackend);
test('Update account details', async ({ page }) => {
await page.goto('/settings/account');
await page.getByLabel('Firstname').fill('Timothy');
await page.getByLabel('Lastname').fill('Apple');
await page.getByLabel('First name').fill('Timothy');
await page.getByLabel('Last name').fill('Apple');
await page.getByLabel('Email').fill('timothy.apple@test.com');
await page.getByLabel('Username').fill('timothy');
await page.getByRole('button', { name: 'Save' }).click();