generator-ionic icon indicating copy to clipboard operation
generator-ionic copied to clipboard

Karma errors

Open jbonigomes opened this issue 10 years ago • 3 comments

When running grunt karma, I keep on getting this error:

Warning: Task "karma:continuous" failed. Use --force to continue.

Is this something I am doing wrong?

jbonigomes avatar Apr 12 '15 19:04 jbonigomes

Karma:continuous failed on my grunt run too.

xorox avatar Apr 20 '15 20:04 xorox

Found a workaround:

Just replace PhantomeJS with your default browser in the Grunfile.js:357 / 361

unit: {
        // Change this to 'Chrome', 'Firefox', etc. Note that you will need
        // to install a karma launcher plugin for browsers other than Chrome.
        browsers: ['Chrome'],
        background: true
      },
      continuous: {
        browsers: ['Chrome'],
        singleRun: true,
      }

xorox avatar Apr 21 '15 07:04 xorox

I tried that, but no success, same error still

jbonigomes avatar Apr 21 '15 11:04 jbonigomes