Skip to content
This repository was archived by the owner on Sep 11, 2025. It is now read-only.

Version 1.3.0-rc9

Pre-release
Pre-release
Compare
Choose a tag to compare
@mmarkelov mmarkelov released this 24 Jul 13:08

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 () => {
  // ...
});