You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, playwright developers.
When I use command line npx playwright test *** --project *** --list or vscode TEST EXPOLOER to list all cases, It shows all cases, whether skipped or not
Is it better to show all cases, mark the case skip or not? Group it by skip or not.
my code snippet:
test(`my test `, async ({ context }) => {
test.skip(skipTest, 'skip the test case when skipTest is true');
...
The text was updated successfully, but these errors were encountered:
Hi, playwright developers.
When I use command line
npx playwright test *** --project *** --list
or vscode TEST EXPOLOER to list all cases, It shows all cases, whether skipped or notIs it better to show all cases, mark the case skip or not? Group it by skip or not.
my code snippet:
The text was updated successfully, but these errors were encountered: