-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding Read me Instructions, updating patch
- Loading branch information
1 parent
08f0ad8
commit 9b80fed
Showing
2 changed files
with
26 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,24 @@ | ||
# codeceptjs-saucehelper | ||
CodeceptJS Sauce Labs helpers, to update Test Names, Test Results after execution | ||
|
||
codeceptjs-saucehelper is [CodeceptJS](https://codecept.io/) helper which is to complete tests results on Sauce Labs after execution. The helper allows to update test name and | ||
test results on sauce labs using the `_passed` and `_failed` hooks accessible in the helper. | ||
|
||
NPM package: https://www.npmjs.com/package/codeceptjs-saucehelper | ||
|
||
### Configuration | ||
|
||
This helper should be added in codecept.json/codecept.conf.js | ||
|
||
Example: | ||
|
||
```json | ||
{ | ||
"helpers": { | ||
"SauceHelper" : { | ||
"require": "codeceptjs-saucehelper" | ||
} | ||
} | ||
} | ||
``` | ||
To use the Helper, Users must provide the Sauce User, Sauce Key & Host as part of the configuration. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "codeceptjs-saucehelper", | ||
"version": "1.0.0", | ||
"version": "1.0.2", | ||
"description": "Sauce Labs Result Publisher for Codecept JS tests", | ||
"repository": { | ||
"type": "git", | ||
|
@@ -9,8 +9,9 @@ | |
"keywords": [ | ||
"codeceptJS", | ||
"codeceptjs", | ||
"saucelabs" | ||
"saucelabs", | ||
"codeceptjs-saucelabs" | ||
], | ||
"author": "Puneet Kala <[email protected]>", | ||
"license": "MIT" | ||
"license": "(ISC OR GPL-3.0)" | ||
} |