gulp-karma icon indicating copy to clipboard operation
gulp-karma copied to clipboard

Example of using Karma with Gulp.

Results 12 gulp-karma issues
Sort by recently updated
recently updated
newest added

I am running a gulp builds task out of tfs like this d:\_wf\10\_tool\node\8.16.0\x64\gulp.cmd karma --gulpfile d:\_wf\10\1\s\gulpfile.js and it doesn't load a d:\_wf\10\1\s\karma.conf.js. When i run "karma start d:\_wf\10\1\s\karma.conf.js" from "d:\_wf\10\_tool\node\8.16.0\x64"...

I have a gulpfile.js ``` var gulp = require('gulp'); var Server = require('karma').Server; var uglify = require('gulp-uglify'); var concat = require('gulp-concat'); var rimraf = require("rimraf"); var merge = require('merge-stream'); gulp.task('test',...

When I implement the karma-runner as simply as I can with a console.log in there: ``` gulp.task("test", function(done) { new karma.Server({ configFile: __dirname + "/karma.conf.js", singleRun: true }, function(exitCode) {...

On gulpfile.js.. ``` gulp.task('karma', function (done){ var karma_server = new Server({ configFile: __dirname + '/karma.conf.js', singleRun: true }, done); karma_server.start(); }); ``` Then error. ``` [15:59:59] 'karma' errored after 2.7...

I am setting up a karma setup using gulp for unit testing. For this I have more number of karma config files. Whenever I run gulp each tests open a...

The given example _seems_ to end properly, _but_ eventually calls back on my end too many times with the following error: `Error: task completion callback called too many times`. I...

When tests fail using the recipe in you get a really ugly stack trace after the error. `PhantomJS 2.1.1 (Linux 0.0.0): Executed 598 of 601 (2 FAILED) (skipped 3) (2.735...