sealights-cypress-plugin 2.0.149 → 2.0.151
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/package.json +4 -4
- package/tsOutputs/version.d.ts +1 -1
- package/tsOutputs/version.js +1 -1
package/README.md
CHANGED
|
@@ -367,7 +367,7 @@ Following is a small example on how to start a test session, run your tests, upl
|
|
|
367
367
|
|
|
368
368
|
```shell
|
|
369
369
|
// Start the test session
|
|
370
|
-
npx slnodejs start --
|
|
370
|
+
npx slnodejs start --tokenFile sltoken.txt --buildSessionIdFile buildSessionId --testStage "cypres e2e"
|
|
371
371
|
// Match the started test session with the one provided to Cypress
|
|
372
372
|
export CYPRESS_SL_TEST_STAGE="cypress e2e" // IMPORTANT!
|
|
373
373
|
// Other config variables for the plugin
|
|
@@ -378,7 +378,7 @@ export CYPRESS_SL_LITE_MODE=true
|
|
|
378
378
|
// Run the tests
|
|
379
379
|
npx cypress run
|
|
380
380
|
// End the test session
|
|
381
|
-
npx slnodejs end --
|
|
381
|
+
npx slnodejs end --tokenFile sltoken.txt --buildSessionIdFile buildSessionId
|
|
382
382
|
```
|
|
383
383
|
|
|
384
384
|
Additionally we support managing executions by the plugin itself in Lite Mode as well, to opt-out of external executions management
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealights-cypress-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.151",
|
|
4
4
|
"description": "Support and config files for Cypress to support Sealights integration.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sl-cypress-runner": "./bin/index.js"
|
|
@@ -42,10 +42,10 @@
|
|
|
42
42
|
"commander": "^9.5.0",
|
|
43
43
|
"globby": "^11.1.0",
|
|
44
44
|
"jwt-decode": "^3.1.2",
|
|
45
|
-
"sealights-plugins-common": "^2.0.134",
|
|
46
45
|
"sl-request": "1.0.6",
|
|
47
|
-
"slnodejs": "6.
|
|
48
|
-
"ts-morph": "^26.0.0"
|
|
46
|
+
"slnodejs": "6.2.6",
|
|
47
|
+
"ts-morph": "^26.0.0",
|
|
48
|
+
"sealights-plugins-common": "2.0.135"
|
|
49
49
|
},
|
|
50
50
|
"bugs": {
|
|
51
51
|
"url": "https://github.com/Sealights/SL.OnPremis.Plugins.JavaScript/issues"
|
package/tsOutputs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.
|
|
1
|
+
export declare const version = "2.0.151";
|
package/tsOutputs/version.js
CHANGED