@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.
Binary file
Binary file
Binary file
Binary file
Binary file
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skyramp/skyramp",
3
- "version": "0.4.92",
3
+ "version": "0.4.94",
4
4
  "description": "module for leveraging skyramp cli functionality",
5
5
  "scripts": {
6
6
  "lint": "eslint 'src/**/*.js' 'src/**/*.ts' --fix",
@@ -12,6 +12,7 @@ interface testerStartV1Options {
12
12
  scenario: Scenario | [Scenario];
13
13
  testName: string;
14
14
  globalHeaders?: {[headerName: string]: string};
15
+ globalVars?: {[variableName: string]: string};
15
16
  generateTestReport?: boolean;
16
17
  isDockerenv?: boolean;
17
18
  }
@@ -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
- generateTestReport: arguments[5] || false,
455
- isDockerenv: arguments[6] || false
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;