sealights-cypress-plugin 2.0.114 → 2.0.115
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 +3 -3
- package/package.json +2 -2
- package/tsOutputs/version.d.ts +1 -1
- package/tsOutputs/version.js +1 -1
package/README.md
CHANGED
|
@@ -41,17 +41,17 @@ You can use the runner in two ways:
|
|
|
41
41
|
|
|
42
42
|
1. Using npx:
|
|
43
43
|
```bash
|
|
44
|
-
npx
|
|
44
|
+
npx sealights-cypress-plugin npx cypress run --spec test.spec.cy
|
|
45
45
|
```
|
|
46
46
|
|
|
47
47
|
2. If you have the plugin installed in your node_modules:
|
|
48
48
|
```bash
|
|
49
|
-
sl-cypress-runner npx cypress run --spec test.spec.cy
|
|
49
|
+
node ./node_modules/.bin/sl-cypress-runner npx cypress run --spec test.spec.cy
|
|
50
50
|
```
|
|
51
51
|
|
|
52
52
|
You can also provide any other test command and it will be executed as is:
|
|
53
53
|
```bash
|
|
54
|
-
npx
|
|
54
|
+
npx sealights-cypress-plugin my-own-cypress-command
|
|
55
55
|
```
|
|
56
56
|
|
|
57
57
|
The runner will:
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sealights-cypress-plugin",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.115",
|
|
4
4
|
"description": "Support and config files for Cypress to support Sealights integration.",
|
|
5
5
|
"bin": {
|
|
6
6
|
"sl-cypress-runner": "./bin/sl-cypress-runner.js"
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
"bin/*"
|
|
44
44
|
],
|
|
45
45
|
"main": "tsOutputs/index.js",
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "7ce1ed2318c325d0a5df287b80821320d813c018"
|
|
47
47
|
}
|
package/tsOutputs/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "2.0.
|
|
1
|
+
export declare const version = "2.0.115";
|
package/tsOutputs/version.js
CHANGED