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

Commit 1484018

Browse files
authored
Bump expect-playwright (#625)
1 parent 13acc49 commit 1484018

File tree

4 files changed

+86
-82
lines changed

4 files changed

+86
-82
lines changed

package-lock.json

Lines changed: 81 additions & 77 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"*.{js,ts}": "eslint --fix"
4545
},
4646
"dependencies": {
47-
"expect-playwright": "^0.3.2",
47+
"expect-playwright": "^0.3.3",
4848
"jest-circus": "^26.6.3",
4949
"jest-environment-node": "^26.6.2",
5050
"jest-process-manager": "^0.2.9",
@@ -61,8 +61,8 @@
6161
"@types/node": "14.14.32",
6262
"@types/rimraf": "^3.0.0",
6363
"@types/uuid": "^8.3.0",
64-
"@typescript-eslint/eslint-plugin": "4.16.1",
65-
"@typescript-eslint/parser": "4.16.1",
64+
"@typescript-eslint/eslint-plugin": "4.17.0",
65+
"@typescript-eslint/parser": "4.17.0",
6666
"coveralls": "3.1.0",
6767
"eslint": "7.21.0",
6868
"eslint-config-airbnb-base": "14.2.1",

src/PlaywrightRunner.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import JestRunner from 'jest-runner'
2+
import type { BrowserServer } from 'playwright-core'
23
import type {
34
Test,
45
TestRunnerContext,
@@ -37,7 +38,6 @@ import {
3738
CONFIG_ENVIRONMENT_NAME,
3839
SERVER,
3940
} from './constants'
40-
import { BrowserServer } from 'playwright-core'
4141
import { setupCoverage, mergeCoverage } from './coverage'
4242
import { GenericBrowser } from '../types/global'
4343

src/coverage.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
import * as uuid from 'uuid'
22
import path from 'path'
33
import fs from 'fs'
4+
import type { Page } from 'playwright-core'
45
import { promisify } from 'util'
56
import rimraf from 'rimraf'
67
const fsAsync = fs.promises
7-
import { Page } from 'playwright-core'
88

99
// @ts-ignore
1010
import NYC from 'nyc'

0 commit comments

Comments
 (0)