onos/tools/gui/gulpfile.babel.js
Steven Burrows db3be6f636 ONOS-6524: Added Code Coverage tools to gulp
When `gulp test` is executed, Karma will now generate an interactive html report for code coverage in each file. The folder can be found in web/gui/src/main/webapp/tests/coverage

Change-Id: I951ac1bea7f3f0ca35deb9cc823bb883bcd9f8a5
2017-07-11 21:58:12 +00:00

9 lines
216 B
JavaScript

import gulp from 'gulp';
import * as Tasks from './gulp-tasks/';
gulp.task('build', ['bundle-css', 'bundle-vendor', 'bundle-js']);
gulp.task('tests', ['test']);
gulp.task('default', function() {
// Do stuff
});