maykinmedia/lazymaps

View on GitHub
build/tasks/test.js

Summary

Maintainability
A
0 mins
Test Coverage
var gulp = require('gulp');
var Server = require('karma').Server;


/**
 * Run test once and exit
 */
gulp.task('test', function (done) {
    new Server({
        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 Server({
        configFile: __dirname + '/../../karma.conf.js',
    }, done).start();
});