mirror of
https://github.com/opennetworkinglab/onos.git
synced 2025-10-15 17:31:31 +02:00
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
9 lines
216 B
JavaScript
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
|
|
}); |