protractor-fail-fast
Advanced tools
Changelog
3.1.0
abortAllShards
option to better support sharding tests.Changelog
3.0.0/3.0.1
NOTE: 3.0.1
technically contains breaking changes with respect to 3.0.0
.
However, since 3.0.0
was DOA, we're breaking with semver and releasing 3.0.1
as a patch anyway.
protractor
>= 4.0.4
as a peerDependency
..protractor-failed
to .protractor-fail-fast
.import failFast from 'protractor-fail-fast';
exports.config = {
plugins: [
failFast.init(),
],
// Optional
afterLaunch: function() {
failFast.clean(); // Removes the fail file once all test runners have completed.
},
}
Changelog
3.0.0/3.0.1
NOTE: 3.0.1
technically contains breaking changes with respect to 3.0.0
.
However, since 3.0.0
was DOA, we're breaking with semver and releasing 3.0.1
as a patch anyway.
protractor
>= 4.0.4
as a peerDependency
..protractor-failed
to .protractor-fail-fast
.import failFast from 'protractor-fail-fast';
exports.config = {
plugins: [
failFast.init(),
],
// Optional
afterLaunch: function() {
failFast.clean(); // Removes the fail file once all test runners have completed.
},
}
Changelog
2.0.0
protractor
>= 2.2.0
as a peerDependency
.protractor
2.2.0
.Changelog
1.0.2
protractor
as a < 2.2.0
peerDependency
to indicate that 1.x
isn't compatible with protractor
2.2.0
and above.