blob: 2d0b90316d2d8fa7fa98e78164639f440cb9dec7 [file] [log] [blame]
Steven Burrowsdb3be6f2017-07-11 22:44:31 +01001import gulp from 'gulp';
2import istanbul from 'gulp-istanbul';
3import path from 'path';
4import { Server } from 'karma';
5
6const tests = ['../../web/gui/src/main/webapp/tests/**/*.js'];
7
8const test = () => {
9 new Server({
10 configFile: path.join(__dirname, '../../../../../', '/web/gui/src/main/webapp/tests/karma.conf.js'),
11 singleRun: true
12 }, () => { console.log('done') }).start();
13};
14
15const tasks = () => {
16 gulp.task('pre-test', () => preTest());
17 gulp.task('test', () => test());
18};
19
20export default tasks();