github playwright-community/jest-playwright v1.3.0-rc8
Version 1.3.0-rc8

latest releases: v4.0.0, v3.0.1, v3.0.0...
pre-release3 years ago
  • 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

Don't miss a new jest-playwright release

NewReleases is sending notifications on new releases.