sealights-newman-wrapper 2.0.134 → 2.0.135
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/README.md +2 -2
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ Example:
|
|
|
24
24
|
const { slNewman, ConfigProvider } = require('sealights-newman-wrapper');
|
|
25
25
|
|
|
26
26
|
const config = new ConfigProvider({
|
|
27
|
-
|
|
27
|
+
tokenFile: "sltoken.txt",
|
|
28
28
|
buildSessionIdFile: "buildSessionId",
|
|
29
29
|
testStage: "newman",
|
|
30
30
|
});
|
|
@@ -40,7 +40,7 @@ slNewman.run(config, {
|
|
|
40
40
|
From the command line add sealights parameters with '--sl-' prefix
|
|
41
41
|
|
|
42
42
|
```
|
|
43
|
-
npx sealights-newman-wrapper ... --sl-
|
|
43
|
+
npx sealights-newman-wrapper ... --sl-tokenFile <path/to/token-file> --sl-buildSessionIdFile <path/to/buildSessionId-file> --sl-testStage e2e
|
|
44
44
|
```
|
|
45
45
|
|
|
46
46
|
### Passing parameters to plugin via config file
|
package/dist/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.
|
|
1
|
+
export declare const version = "2.0.135";
|
package/dist/version.js
CHANGED