Skip to content

Commit

Permalink
fix: fix admin credentials
Browse files Browse the repository at this point in the history
  • Loading branch information
osundwajeff committed Jan 25, 2024
1 parent 5c2f2fd commit 21688e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions playwright/ci-test/tests/00-auth.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,11 +35,11 @@ setup('test', async ({ page }) => {

await page.getByLabel('Username').click();

await page.getByLabel('Username').fill('admin');
await page.getByLabel('Username').fill(username);

await page.getByLabel('Password').click();

await page.getByLabel('Password').fill('admin123');
await page.getByLabel('Password').fill(password);

await page.getByRole('button', { name: 'Login' }).click();

Expand Down

0 comments on commit 21688e4

Please sign in to comment.