fix build and auto-test issues

This commit is contained in:
2025-01-20 13:06:05 -07:00
parent 59b433830d
commit 101acd2a8c
3 changed files with 16 additions and 18 deletions

View File

@@ -23,6 +23,6 @@ test('Check usage limits', async ({ page }) => {
await page.getByRole('button', { name: 'Set Your Name' }).click();
const name = 'User ' + did.slice(11, 14);
await page.getByPlaceholder('Name').fill(name);
await page.getByRole('button', { name: 'Save' }).click();
await page.getByRole('button', { name: 'Save', exact: true }).click();
});