Releases: playwright-community/jest-playwright
Releases · playwright-community/jest-playwright
Version 1.3.0-rc10
Version 1.3.0-rc9
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 () => {
// ...
});
Version 1.3.0-rc8
- Changed jestPlaywright skip API #241
// BEFORE
jestPlaywright.skip({ browsers: ['chromium'] }, () => {
test('should skip this one', async () => {
const title = await page.title()
expect(title).toBe('Google')
})
})
// AFTER
it.jestPlaywrightSkip({ browsers: ['chromium'] }, 'should skip this one', async () => {
const title = await page.title()
expect(title).toBe('Google')
})
- jestPlaywright debug helper functions improvements #243
Version 1.3.0-rc7
Added missed extends.js
to npm package