Version 1.3.0-rc9
Pre-release
Pre-release
Added ability to use skip
and only
for custom jestPlaywright
functions:
// Run specific test(s) only
test.jestPlaywrightDebug.only('test1', async () => {
// ...
});
// Skip specific test(s)
test.jestPlaywrightConfig.skip({ /* ... */ }, 'test2', async () => {
// ...
});