Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuezk/protractor-jasmine-retry
A Protractor plugin to automatically re-run failed test specs for Jasmine test framework.
https://github.com/yuezk/protractor-jasmine-retry
e2e e2e-tests jasmine protractor protractor-plugin protractor-retry
Last synced: 22 days ago
JSON representation
A Protractor plugin to automatically re-run failed test specs for Jasmine test framework.
- Host: GitHub
- URL: https://github.com/yuezk/protractor-jasmine-retry
- Owner: yuezk
- License: mit
- Created: 2020-04-01T04:41:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-01-07T04:37:09.000Z (almost 2 years ago)
- Last Synced: 2024-05-23T01:34:32.268Z (6 months ago)
- Topics: e2e, e2e-tests, jasmine, protractor, protractor-plugin, protractor-retry
- Language: JavaScript
- Homepage: https://npmjs.com/package/protractor-jasmine-retry
- Size: 193 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# protractor-jasmine-retry [![CircleCI](https://circleci.com/gh/yuezk/protractor-jasmine-retry.svg?style=svg)](https://circleci.com/gh/yuezk/protractor-jasmine-retry) [![Build status](https://ci.appveyor.com/api/projects/status/0xq9om9mbe67ew8u/branch/master?svg=true&passingText=Windows%20-%20OK&failingText=Windows%20-%20Fail)](https://ci.appveyor.com/project/yuezk/protractor-jasmine-retry/branch/master)
A Protractor plugin to automatically re-run failed test specs for Jasmine test framework.
Inspired by [protractor-retry](https://github.com/yahoo/protractor-retry), but added some improvements.
1. Support Windows
1. Support non parallel mode, fix [#62](https://github.com/yahoo/protractor-retry/issues/62)
1. Collect failed files from the stacktrace, which is more accurate
1. Converted to a Protractor plugin, which would simplify the configuration
1. Provide more APIs to make it easier to integrate with other plugins, like
[protractor-beautiful-reporter](https://www.npmjs.com/package/protractor-beautiful-reporter)
and [protractor-screenshoter-plugin](https://github.com/azachar/protractor-screenshoter-plugin)But the bad news is it only supports Jasmine framework now.
## Usage
1. Install with npm/yarn
```sh
npm install --save-dev protractor-jasmine-retry
```2. Use it in the protractor config file
```js
const ProtractorJasmineRetry = require('protractor-jasmine-retry');exports.config = {
plugins: [
ProtractorJasmineRetry(/* { maxAttempts: 2 } */),
],afterLaunch(exitCode) {
return ProtractorJasmineRetry.afterLaunch(exitCode);
}
};
```## API
### `ProtractorJasmineRetry(opts)`
The plugin constructor.
- `opts.maxAttempts`: The max attempts before success. Default is `2`
- `opts.resultPath`: The folder used to save the temp result file relative to the current working directory. Default is `protractorFailedSpecs`### `ProtractorJasmineRetry.afterLaunch(exitCode)`
This function should be called with exit code of the Protractor's `afterLaunch` callback and return it.
### `ProtractorJasmineRetry.retriedTimes`
Returns the retried times, it could be `0`, `1`, `2` if the `maxAttempts` is `2`.
### `ProtractorJasmineRetry.isLastAttempt()`
Returns whether current run is the last attempt.
## Integrate with other plugins
The idea is that construct a run ID using the `ProtractorJasmineRetry.retriedTimes` and use it to distinct the configuration of other plugins.
```js
const ProtractorJasmineRetry = require('protractor-jasmine-retry');
const runId = `run_${ProtractorJasmineRetry.retriedTimes + 1}`; // it could be `run_1`, `run_2`, `run_3`...exports.config = {
plugins: [
{
package: 'protractor-screenshoter-plugin',
screenshotPath: path.join('screenshoter', runId), // The reports can be saved in different folders
// ... ...
}
]
};
```## License
[MIT](LICENSE)