@applitools/spec-driver-playwright 1.3.0 → 1.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +5 -1
- package/dist/spec-driver.js +5 -1
- package/package.json +24 -20
- package/CHANGELOG.md +0 -26
package/dist/index.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/dist/spec-driver.js
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
3
|
if (k2 === undefined) k2 = k;
|
|
4
|
-
Object.
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
5
9
|
}) : (function(o, m, k, k2) {
|
|
6
10
|
if (k2 === undefined) k2 = k;
|
|
7
11
|
o[k2] = m[k];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@applitools/spec-driver-playwright",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"keywords": [
|
|
5
5
|
"playwright",
|
|
6
6
|
"chrome devtools protocol",
|
|
@@ -37,9 +37,10 @@
|
|
|
37
37
|
"test": "mocha ./test/**/*.spec.ts --no-timeouts -r ts-node/register",
|
|
38
38
|
"setup": "yarn playwright:setup",
|
|
39
39
|
"playwright:setup": "sudo npx playwright install-deps",
|
|
40
|
+
"upgrade:framework": "if [ ! -z $APPLITOOLS_PLAYWRIGHT_VERSION ]; then packagejson=`cat package.json`; yarn upgrade --no-lockfile playwright@$APPLITOOLS_PLAYWRIGHT_VERSION; echo \"$packagejson\" > package.json; fi",
|
|
40
41
|
"deps": "bongo deps",
|
|
41
42
|
"gh:test": "gh workflow run test.yml --ref $(git rev-parse --abbrev-ref HEAD) -f packages='spec-playwright' -f links='types utils test-utils'",
|
|
42
|
-
"gh:publish": "gh workflow run publish.yml --ref $(git rev-parse --abbrev-ref HEAD)
|
|
43
|
+
"gh:publish": "gh workflow run publish-spec-playwright.yml --ref $(git rev-parse --abbrev-ref HEAD)",
|
|
43
44
|
"preversion": "bongo preversion",
|
|
44
45
|
"version": "bongo version",
|
|
45
46
|
"postversion": "bongo postversion --skip-release-notification"
|
|
@@ -50,32 +51,35 @@
|
|
|
50
51
|
}
|
|
51
52
|
},
|
|
52
53
|
"dependencies": {
|
|
53
|
-
"@applitools/types": "1.
|
|
54
|
-
"@applitools/utils": "1.
|
|
54
|
+
"@applitools/types": "1.4.4",
|
|
55
|
+
"@applitools/utils": "1.3.1"
|
|
55
56
|
},
|
|
56
57
|
"devDependencies": {
|
|
57
|
-
"@applitools/api-extractor": "^1.2.
|
|
58
|
-
"@applitools/
|
|
59
|
-
"@applitools/
|
|
60
|
-
"@applitools/test-utils": "1.
|
|
58
|
+
"@applitools/api-extractor": "^1.2.7",
|
|
59
|
+
"@applitools/bongo": "^2.1.0",
|
|
60
|
+
"@applitools/scripts": "1.1.0",
|
|
61
|
+
"@applitools/test-utils": "1.3.2",
|
|
61
62
|
"@types/mocha": "^9.0.0",
|
|
62
|
-
"@types/node": "
|
|
63
|
-
"@typescript-eslint/eslint-plugin": "^
|
|
64
|
-
"@typescript-eslint/parser": "^
|
|
65
|
-
"eslint": "^
|
|
66
|
-
"eslint-config-prettier": "^
|
|
63
|
+
"@types/node": "17.0.36",
|
|
64
|
+
"@typescript-eslint/eslint-plugin": "^5.27.0",
|
|
65
|
+
"@typescript-eslint/parser": "^5.27.0",
|
|
66
|
+
"eslint": "^8.16.0",
|
|
67
|
+
"eslint-config-prettier": "^8.5.0",
|
|
67
68
|
"eslint-plugin-mocha-no-only": "^1.1.1",
|
|
68
69
|
"eslint-plugin-node": "^11.1.0",
|
|
69
|
-
"eslint-plugin-prettier": "^
|
|
70
|
+
"eslint-plugin-prettier": "^4.0.0",
|
|
70
71
|
"husky": "^4.3.7",
|
|
71
|
-
"mocha": "^9.
|
|
72
|
-
"playwright": "^1.
|
|
73
|
-
"prettier": "^2.
|
|
74
|
-
"ts-node": "^10.
|
|
75
|
-
"ttypescript": "^1.5.
|
|
76
|
-
"typescript": "^4.
|
|
72
|
+
"mocha": "^9.2.2",
|
|
73
|
+
"playwright": "^1.22.2",
|
|
74
|
+
"prettier": "^2.6.2",
|
|
75
|
+
"ts-node": "^10.8.0",
|
|
76
|
+
"ttypescript": "^1.5.13",
|
|
77
|
+
"typescript": "^4.7.2"
|
|
77
78
|
},
|
|
78
79
|
"peerDependencies": {
|
|
79
80
|
"playwright": ">=1.0.0"
|
|
81
|
+
},
|
|
82
|
+
"engines": {
|
|
83
|
+
"node": ">=12.13.0"
|
|
80
84
|
}
|
|
81
85
|
}
|
package/CHANGELOG.md
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
## Unreleased
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
## 1.3.0 - 2021/11/17
|
|
7
|
-
|
|
8
|
-
- add support for use playwright `Locator` as a `Selector`
|
|
9
|
-
- updated to @applitools/types@1.0.20 (from 1.0.19)
|
|
10
|
-
|
|
11
|
-
## 1.2.0 - 2021/11/10
|
|
12
|
-
|
|
13
|
-
- updated to @applitools/types@1.0.19 (from 1.0.15)
|
|
14
|
-
- updated to @applitools/utils@1.2.4 (from 1.2.3)
|
|
15
|
-
|
|
16
|
-
## 1.1.1 - 2021/10/20
|
|
17
|
-
|
|
18
|
-
- fix handle type parser
|
|
19
|
-
|
|
20
|
-
## 1.1.0 - 2021/10/12
|
|
21
|
-
|
|
22
|
-
- bump version
|
|
23
|
-
|
|
24
|
-
## 1.0.3 - 2021/10/12
|
|
25
|
-
|
|
26
|
-
- spec driver implementation for playwright framework
|