Skip to content

Commit

Permalink
FABN-1388 NodeSDK add compile
Browse files Browse the repository at this point in the history
Add the compile dependency to all run test
steps as the type scripts are now source for
the network package and must be compiled before
the test will run..

Signed-off-by: Bret Harrison <beharrison@nc.rr.com>
Change-Id: Iddfb92a03d042f53cc302e921375beb2dff9edef
  • Loading branch information
harrisob committed Sep 30, 2019
1 parent 028205f commit 3e86242
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -203,17 +203,17 @@ gulp.task('run-test-fv-scenario', (done) => {
});

gulp.task('run-test-scenario', (done) => {
const tasks = ['run-test-cucumber'];
const tasks = ['compile', 'run-test-cucumber'];
runSequence(...tasks, done);
});

gulp.task('run-test-merge', (done) => {
const tasks = ['clean-up', 'docker-clean', 'pre-test', 'run-test-cucumber'];
const tasks = ['clean-up', 'docker-clean', 'pre-test', 'compile', 'run-test-cucumber'];
runSequence(...tasks, done);
});

gulp.task('run-test-functional', (done) => {
const tasks = ['test-fv-only'];
const tasks = ['compile', 'test-fv-only'];
runSequence(...tasks, done);
});

Expand Down

0 comments on commit 3e86242

Please sign in to comment.