Created
December 2, 2015 03:38
-
-
Save Nijhazer/80fe1bc98f16371b5c81 to your computer and use it in GitHub Desktop.
Building Applications with TypeScript - Snippet 19
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var KarmaServer = KarmaServer = require('karma').Server; | |
gulp.task('test:www', ['compile:www'], function (done) { | |
new KarmaServer({ | |
configFile: __dirname + '/karma.conf.js', | |
singleRun: true | |
}, done).start(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment