1
0
Fork 0
mirror of https://github.com/openstf/stf synced 2025-10-04 02:09:32 +02:00

Remove protractor from npm test for now, until protractor tests are updated for SauceLabs.

This commit is contained in:
Gunther Brunner 2015-07-14 21:01:50 +09:00
parent eaec90184e
commit fb5a1dd6bc
2 changed files with 3 additions and 3 deletions

View file

@ -47,7 +47,7 @@ gulp.task('jscs', function () {
});
gulp.task('lint', ['jshint', 'jsonlint'])
gulp.task('test', ['lint', 'protractor'])
gulp.task('test', ['lint'])
gulp.task('build', function (cb) {
runSequence('clean', 'webpack:build', cb)

View file

@ -74,8 +74,8 @@ module.exports = function (config) {
require('karma-phantomjs-launcher'),
require('karma-junit-reporter'),
require('karma-ie-launcher'),
require('karma-safari-launcher'),
require('karma-opera-launcher')
require('karma-safari-launcher')
//require('karma-opera-launcher')
]
})
}