UNPKG

@danielkalen/simplybind

Version:

Magically simple, framework-less one-way/two-way data binding for frontend/backend in ~5kb.

41 lines (37 loc) 858 B
var gulp = require('gulp'); var Karma = require('karma').Server; /** * Run test once and exit */ gulp.task('test', function (done) { new Karma({ configFile: __dirname + '/../../karma.conf.js', singleRun: true }, done).start(); }); /** * Watch for file changes and re-run tests on each change */ gulp.task('tdd', function (done) { new Karma({ configFile: __dirname + '/../../karma.conf.js' }, done).start(); }); /** * Run test once with code coverage and exit */ gulp.task('cover', function (done) { new Karma({ configFile: __dirname + '/../../karma.conf.js', singleRun: true, reporters: ['coverage'], preprocessors: { 'test/**/*.js': ['babel'], 'src/**/*.js': ['babel', 'coverage'] }, coverageReporter: { type: 'html', dir: 'build/reports/coverage' } }, done).start(); });