Skip to content

Commit

Permalink
FABN-1177 Add gulp end-to-end test for fabric
Browse files Browse the repository at this point in the history
Add end-to-end gulp test, to verify the fabric
e2e-daily and e2e-merge.

Change-Id: Ifbb26b61fe78d68e70607526e1de39aa76512ee1
Signed-off-by: Sambhav Nidamarty <sambhavdutt@gmail.com>
  • Loading branch information
sambhavdutt committed Mar 13, 2019
1 parent c10865c commit ed0897e
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions build/tasks/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,12 @@ gulp.task('run-test', (done) => {
runSequence(...tasks, done);
});

// fabric end-to-end test
gulp.task('run-end-to-end', (done) => {
const tasks = ['clean-up', 'docker-clean', 'pre-test', 'ca', 'compile', 'run-tape-e2e'];
runSequence(...tasks, done);
});

// Main test method to run all test suites
// - lint, unit first, then FV, then scenario
gulp.task('run-test-integration', (done) => {
Expand Down

0 comments on commit ed0897e

Please sign in to comment.