Skip to content

Commit eafce33

Browse files
committed
Run 'install-driver-into-sandbox' prior to 'test-nodejs' task
Otherwise just running `gulp test-nodejs` tests fail
1 parent 5b8910e commit eafce33

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

gulpfile.babel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ gulp.task('install-driver-into-sandbox', ['nodejs'], function(){
151151
});
152152

153153
gulp.task('test', function(cb){
154-
runSequence('install-driver-into-sandbox', 'test-nodejs', 'test-browser', 'run-tck', function (err) {
154+
runSequence('test-nodejs', 'test-browser', 'run-tck', function (err) {
155155
if (err) {
156156
var exitCode = 2;
157157
console.log('[FAIL] test task failed - exiting with code ' + exitCode);
@@ -161,7 +161,7 @@ gulp.task('test', function(cb){
161161
});
162162
});
163163

164-
gulp.task('test-nodejs', ['nodejs'], function () {
164+
gulp.task('test-nodejs', ['install-driver-into-sandbox'], function () {
165165
return gulp.src('test/**/*.test.js')
166166
.pipe(jasmine({
167167
// reporter: new reporters.JUnitXmlReporter({

0 commit comments

Comments
 (0)