@percy/client 1.28.2-beta.2 → 1.28.3-beta.0
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/client.js +3 -1
- package/package.json +4 -4
package/dist/client.js
CHANGED
|
@@ -354,6 +354,7 @@ export class PercyClient {
|
|
|
354
354
|
environmentInfo,
|
|
355
355
|
sync,
|
|
356
356
|
testCase,
|
|
357
|
+
thTestCaseExecutionId,
|
|
357
358
|
resources = []
|
|
358
359
|
} = {}) {
|
|
359
360
|
validateId('build', buildId);
|
|
@@ -379,7 +380,8 @@ export class PercyClient {
|
|
|
379
380
|
'scope-options': scopeOptions || {},
|
|
380
381
|
'minimum-height': minHeight || null,
|
|
381
382
|
'enable-javascript': enableJavaScript || null,
|
|
382
|
-
'enable-layout': enableLayout || false
|
|
383
|
+
'enable-layout': enableLayout || false,
|
|
384
|
+
'th-test-case-execution-id': thTestCaseExecutionId || null
|
|
383
385
|
},
|
|
384
386
|
relationships: {
|
|
385
387
|
resources: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@percy/client",
|
|
3
|
-
"version": "1.28.
|
|
3
|
+
"version": "1.28.3-beta.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -32,8 +32,8 @@
|
|
|
32
32
|
"test:coverage": "yarn test --coverage"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@percy/env": "1.28.
|
|
36
|
-
"@percy/logger": "1.28.
|
|
35
|
+
"@percy/env": "1.28.3-beta.0",
|
|
36
|
+
"@percy/logger": "1.28.3-beta.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "4f68901eae5d818f24940acb397d1c3f4c0182e5"
|
|
39
39
|
}
|