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

Karma plugin for using SystemJS as a module loader

Results 16 karma-systemjs issues
Sort by recently updated
recently updated
newest added

The method for setting bundles changed May 2015 here (tagged [email protected]): https://github.com/systemjs/systemjs/commit/2141c64b31f2b4b35f9089c2f306049d334c652e Closes #91, #90

I haven't been giving this project the attention it deserves, for two main reasons: 1. Family commitments mean I no longer have the time that I did for OSS work....

I have `bundles` specified in my systemjs config and they work as expected using `karma-systemjs` 0.12.0 ``` System.config({ transpiler: 'typescript', bundles: { 'my/feature': ['my/feature/files', 'my/feature/permissions', 'my/feature/query'] }, map: { 'my/feature':...

I was digging around trying to work around #90, so I tried to use the `useBundles` setting and noticed it seems to have no effect. I put a breakpoint at...

Hi There, I receiving errors when I try to run my karma tests with karma-systemjs. The error is: WARN [web-server]: 404: /base/jspm_packages/npm/[email protected]. Do I need to use a shim for...

I get 404s when my tests try to reference SystemJS modules (conf files below). E.g., ``` Error: XHR error (404 Not Found) loading http://localhost:9876/lib/github/angular/[email protected] ``` But I have added these...

Hi there, I am receiving an error when running karma tests using the below configuration files: Here is my system.conf.js file: /*global System */ /** * SystemJS configuration for karma-systemjs...

After starting Karma I see it load most every file in my app then I get the following error > Chrome 51.0.2704 (Windows 10 0.0.0) ERROR > Error: (SystemJS) Error:...

I've upgraded karma from 0.13.22 to 1.1.1 and my tests don't work anymore. 21 07 2016 08:48:29.118:INFO [karma]: Karma v1.1.1 server started at http://localhost:9877/ 21 07 2016 08:48:29.118:INFO [launcher]: Launching...

Hello, I am having a typescript - angular - systemjs project and I am using it with karma-systemjs. I have managed for it to work in loading the files needed...