Skip to content

Version 1.3.0-rc8

Pre-release
Pre-release
Compare
Choose a tag to compare
@mmarkelov mmarkelov released this 23 Jul 16:07
  • 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