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

Results 55 karma-jspm issues
Sort by recently updated
recently updated
newest added

When I use JSPM with Karma, none of the files from files: [] array is loaded. But if I disable JSPM they start getting loaded.

I have the following config file ``` module.exports = function(config) { config.set({ basePath: 'Scripts', browserNoActivityTimeout: 30000, //necessary for build server to not vomit frameworks: ['mocha', 'chai', 'jspm'], browsers: ['Chrome'], autoWatch:...

It tries to load just 'name.spec'. I think there is some logic in this plugin that doesn't allow using more than one dot in the file name.

Did anyone try to use WebStrom's test runner yet? On the CLI everything works just fine. But if I use the `karma.conf.js` with WebStorm's test runner, it says `Empty test...

I'm trying to get setup with karma-jspm and i'm wondering, how can i configure it so that my tests are transpiled as well so that i can use es6 from...

I have the following very simple `test.js` ``` js describe("some test", () => { it("should pass", () => expect(true).toBe(true)); it("should fail", () => expect(false).toBe(true)); }) ``` With the very simple...

I've got an issue where one of my custom aliases in my config.js file is returning 404 when running tests. In my config.js file, I reference a config file as...

If I run `karma run` using this plugin (`karma start` is OK) it crashes in this file (part of karma package): node_modules/karma/lib/reporters/multi.js: ``` var helper = require('../helper'); var MultiReporter =...

Hi, I want to test an aurelia.io project which uses jpsm. To be able to work with bluebird promises, I have to load its file before loading system.js in browser...