Skip to content

Commit

Permalink
1.6.0-rc4
Browse files Browse the repository at this point in the history
  • Loading branch information
mmarkelov committed May 23, 2021
1 parent d2532e9 commit d0a96c9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jest-playwright-preset",
"version": "1.6.0-rc3",
"version": "1.6.0-rc4",
"main": "index.js",
"description": "Running tests using Jest & Playwright.",
"license": "MIT",
Expand Down
2 changes: 1 addition & 1 deletion src/PlaywrightEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,7 @@ export const getPlaywrightEnv = (basicEnv = 'node'): unknown => {
const browserType = getBrowserType(browserName)
const { instance, devices } = getPlaywrightInstance(browserType)
const contextOptions = this._getContextOptions(devices)
if (haveSkippedTests && event.name === 'test_fn_start') {
if (haveSkippedTests && event.name === 'run_start') {
this.global.browser = await getBrowserPerProcess(
instance as GenericBrowser,
browserType,
Expand Down

0 comments on commit d0a96c9

Please sign in to comment.