Skip to content

Commit

Permalink
Fix broken start tests
Browse files Browse the repository at this point in the history
  • Loading branch information
carlyrichmond committed Apr 21, 2024
1 parent 1489737 commit e470a7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cake-game/src/routes/start/Start.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,5 @@ test('should enter username', async ({ mount }) => {
const username = 'rubber-ducky'
usernameInput.fill('username');

await expect(usernameInput).toHaveText(username);
await expect(await usernameInput.inputValue()).toBe(username);
});

0 comments on commit e470a7d

Please sign in to comment.