Skip to content

Commit

Permalink
fix: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
andreancardona committed Apr 3, 2024
1 parent 8800570 commit 05cc580
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/components/RadioButton/RadioButton-test.avt.e2e.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ test.describe('@avt RadioButton', () => {
});
await expect(page.locator('input#radio-1')).toBeVisible();
await page.keyboard.press('Tab');
await expect(page.locator('input#radio-1')).toBeChecked();
await expect(page.locator('input#radio-1')).toBeVisible();
await page.keyboard.press('ArrowDown');
await expect(page.locator('input#radio-2')).toBeChecked();
await expect(page.locator('input#radio-2')).toBeVisible();
});

test('@avt-advanced-states - invalid state', async ({ page }) => {
Expand Down

0 comments on commit 05cc580

Please sign in to comment.