@percy/core 1.28.2-beta.2 → 1.28.2
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/config.js +12 -0
- package/package.json +8 -8
package/dist/config.js
CHANGED
|
@@ -74,6 +74,9 @@ export const configSchema = {
|
|
|
74
74
|
testCase: {
|
|
75
75
|
type: 'string'
|
|
76
76
|
},
|
|
77
|
+
thTestCaseExecutionId: {
|
|
78
|
+
type: 'string'
|
|
79
|
+
},
|
|
77
80
|
fullPage: {
|
|
78
81
|
type: 'boolean',
|
|
79
82
|
onlyAutomate: true
|
|
@@ -325,6 +328,9 @@ export const snapshotSchema = {
|
|
|
325
328
|
testCase: {
|
|
326
329
|
$ref: '/config/snapshot#/properties/testCase'
|
|
327
330
|
},
|
|
331
|
+
thTestCaseExecutionId: {
|
|
332
|
+
$ref: '/config/snapshot#/properties/thTestCaseExecutionId'
|
|
333
|
+
},
|
|
328
334
|
reshuffleInvalidTags: {
|
|
329
335
|
$ref: '/config/snapshot#/properties/reshuffleInvalidTags'
|
|
330
336
|
},
|
|
@@ -732,6 +738,12 @@ export const comparisonSchema = {
|
|
|
732
738
|
sync: {
|
|
733
739
|
type: 'boolean'
|
|
734
740
|
},
|
|
741
|
+
testCase: {
|
|
742
|
+
type: 'string'
|
|
743
|
+
},
|
|
744
|
+
thTestCaseExecutionId: {
|
|
745
|
+
type: 'string'
|
|
746
|
+
},
|
|
735
747
|
metadata: {
|
|
736
748
|
type: 'object',
|
|
737
749
|
additionalProperties: false,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/core",
|
|
3
|
-
"version": "1.28.2
|
|
3
|
+
"version": "1.28.2",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
},
|
|
10
10
|
"publishConfig": {
|
|
11
11
|
"access": "public",
|
|
12
|
-
"tag": "
|
|
12
|
+
"tag": "latest"
|
|
13
13
|
},
|
|
14
14
|
"engines": {
|
|
15
15
|
"node": ">=14"
|
|
@@ -43,11 +43,11 @@
|
|
|
43
43
|
"test:types": "tsd"
|
|
44
44
|
},
|
|
45
45
|
"dependencies": {
|
|
46
|
-
"@percy/client": "1.28.2
|
|
47
|
-
"@percy/config": "1.28.2
|
|
48
|
-
"@percy/dom": "1.28.2
|
|
49
|
-
"@percy/logger": "1.28.2
|
|
50
|
-
"@percy/webdriver-utils": "1.28.2
|
|
46
|
+
"@percy/client": "1.28.2",
|
|
47
|
+
"@percy/config": "1.28.2",
|
|
48
|
+
"@percy/dom": "1.28.2",
|
|
49
|
+
"@percy/logger": "1.28.2",
|
|
50
|
+
"@percy/webdriver-utils": "1.28.2",
|
|
51
51
|
"content-disposition": "^0.5.4",
|
|
52
52
|
"cross-spawn": "^7.0.3",
|
|
53
53
|
"extract-zip": "^2.0.1",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"rimraf": "^3.0.2",
|
|
59
59
|
"ws": "^8.0.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "88105fef569632b816955fcd1320bcc4b218bf67"
|
|
62
62
|
}
|