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

Grunt plugin for Karma.

Results 57 grunt-karma issues
Sort by recently updated
recently updated
newest added

Is it possible to run a local installation of karma? The karma documentation specifies.. ``` $ npm install karma # Start Karma $ ./node_modules/.bin/karma start ``` Due to a few...

type: support

Using the following config: ``` grunt.initConfig({ karma: { unit: { options: { autoWatch: false, singleRun: true, } }, watch: { options: { autoWatch: false, singleRun: false }, background: true, },...

type: support

Is it possible to run karma using watch (grunt-contrib-watch) when the watch task is set with "nospawn": true ``` watch:{ dev: { options: { interrupt: true, nospawn: true }, files:...

type: support

Right now, grunt-karma needs a dedicated "files" property in the options config object, e.g. ``` json { "karma": { "options": { "files": ["put-files-here"] }}} ``` It is not possible to...

First run: Unaborted, genuine failure. Second run: Aborted early, no failure. ![karma screen shot 2015-02-08 at 23 18 51](https://cloud.githubusercontent.com/assets/156867/6350164/507a703a-bc29-11e4-8f2d-bec3f9ccbab4.png)

By default `_.merge` incrementally overwrites array when merging. This can lead to surprising behavior when default options exist. This will let values be added to existing arrays. Closes #246 Please...

Hi, I'm currently running karma 0.12.16 and grunt-karma 0.9.0. On Karma's [configuration](http://karma-runner.github.io/0.12/config/configuration-file.html) each setting has a `--arg` flag that allows one to use it while running karma through command line...

I'm trying to setup continuous testing using grunt-watch but keep getting an error 'Socket hung up' my grunt config for karma: ``` karma: { options: { basePath: '', autoWatch: false,...

Gruntfile.js ``` javascript module.exports = function (grunt) { 'use strict'; grunt.initConfig({ pkg: grunt.file.readJSON('package.json'), karma: { options: { configFile: 'karma.conf.js' }, unit: { background: true }, continuous: { background: false, singleRun:...

needs: investigation

I'd like a way to start (and keep open) the karma server from grunt, without introducing the watch task. I use browserify for bundling etc so have no need for...