a gulp plugin that helps to run AngularJS end-to-end tests using Protractor framework
gulp-protractor
is a helper to run AngularJS end-to-end tests using Protractor framework from gulp. In order to operate, protractor
package must be installed along gulp-protractor
.
Example of usage:
var protractor = require('gulp-protractor').protractor
gulp.src(["./src/tests/*.js"])
.pipe(protractor({
configFile: './protractor.config.js',
args: ['--baseUrl', 'http://127.0.0.1:8080']
}))
.on('error', function (error) {
throw error
})