Closed
Description
System info
- Playwright Version: 1.32
- Operating System:Mac
- Browser: [All, Chromium, Firefox, WebKit]
- Other info:
Source code
- [ x] I provided exact source code that allows reproducing the issue locally.
Test file (self-contained)
test.skip('should show when choosing skipped tests filter', async ({ page }) => {
await page.setContent(<input id='checkbox' type='checkbox'></input>
);
await page.getByRole('checkbox').check();
await expect(page.getByRole('checkbox')).toBeChecked();
});
Steps
- npx playwright test --ui
- click on skip filter in ui
Expected
should show all skipped tests when i click the skipped filter
Actual
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment