-Add shell e2e test.

-Add parallel multi browser protractor configuration.
-Add screenshot reports.
-Add fail fast helper.
This commit is contained in:
Gunther Brunner
2014-08-26 23:37:50 +09:00
parent 755502a28e
commit b1afa8076c
6 changed files with 100 additions and 6 deletions

View File

@@ -0,0 +1,10 @@
// https://github.com/angular/protractor/issues/499
module.exports = function FailFast() {
var passed = jasmine.getEnv().currentSpec.results().passed()
if (!passed) {
jasmine.getEnv().specFilter = function (spec) {
return false
}
}
}