@testomatio/reporter 0.6.4 → 0.6.5
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/Changelog.md +4 -0
- package/README.md +3 -3
- package/lib/xmlReader.js +1 -0
- package/package.json +1 -1
package/Changelog.md
CHANGED
package/README.md
CHANGED
|
@@ -168,7 +168,7 @@ exports.config = {
|
|
|
168
168
|
Run the following command from you project folder:
|
|
169
169
|
|
|
170
170
|
```bash
|
|
171
|
-
TESTOMATIO={API_KEY} npx start-test-run
|
|
171
|
+
TESTOMATIO={API_KEY} npx start-test-run -c 'npx protractor conf.js'
|
|
172
172
|
```
|
|
173
173
|
|
|
174
174
|
### WebdriverIO
|
|
@@ -496,7 +496,7 @@ TESTOMATIO_DISABLE_ARTIFACTS=1
|
|
|
496
496
|
If you want to create a run and obtain its `{RUN_ID}` from [testomat.io](https://testomat.io) you can use `--launch` option:
|
|
497
497
|
|
|
498
498
|
```bash
|
|
499
|
-
TESTOMATIO={API_KEY} npx start-test-run
|
|
499
|
+
TESTOMATIO={API_KEY} npx start-test-run --launch
|
|
500
500
|
```
|
|
501
501
|
|
|
502
502
|
This command will return `{RUN_ID}` which you can pass to other testrunner processes.
|
|
@@ -508,5 +508,5 @@ This command will return `{RUN_ID}` which you can pass to other testrunner proce
|
|
|
508
508
|
If you want to finish a run started by `--launch` use `--finish` option. `TESTOMATIO_RUN` environment variable is required:
|
|
509
509
|
|
|
510
510
|
```bash
|
|
511
|
-
TESTOMATIO={API_KEY} TESTOMATIO_RUN={RUN_ID} npx start-test-run
|
|
511
|
+
TESTOMATIO={API_KEY} TESTOMATIO_RUN={RUN_ID} npx start-test-run --finish
|
|
512
512
|
```
|
package/lib/xmlReader.js
CHANGED