@skyramp/skyramp 0.4.92 → 0.4.94
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/lib/dev-darwin-amd64.dylib +0 -0
- package/lib/dev-darwin-arm64.dylib +0 -0
- package/lib/dev-linux-386.so +0 -0
- package/lib/dev-linux-amd64.so +0 -0
- package/lib/dev-windows-amd64.dll +0 -0
- package/package.json +1 -1
- package/src/classes/SkyrampClient.d.ts +1 -0
- package/src/classes/SkyrampClient.js +4 -2
|
Binary file
|
|
Binary file
|
package/lib/dev-linux-386.so
CHANGED
|
Binary file
|
package/lib/dev-linux-amd64.so
CHANGED
|
Binary file
|
|
Binary file
|
package/package.json
CHANGED
|
@@ -440,6 +440,7 @@ class SkyrampClient {
|
|
|
440
440
|
scenario,
|
|
441
441
|
testName,
|
|
442
442
|
globalHeaders = null,
|
|
443
|
+
globalVars = null, // eslint-disable-line no-unused-vars
|
|
443
444
|
generateTestReport = false,
|
|
444
445
|
isDockerenv = false,
|
|
445
446
|
kubePath = "",
|
|
@@ -451,8 +452,9 @@ class SkyrampClient {
|
|
|
451
452
|
scenario: arguments[2],
|
|
452
453
|
testName: arguments[3],
|
|
453
454
|
globalHeaders: arguments[4] || null,
|
|
454
|
-
|
|
455
|
-
|
|
455
|
+
globalVars: arguments[5] || null,
|
|
456
|
+
generateTestReport: arguments[6] || false,
|
|
457
|
+
isDockerenv: arguments[7] || false
|
|
456
458
|
};
|
|
457
459
|
|
|
458
460
|
const scenarioToUse = scenario || this.scenario;
|