You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi. I having the following problem with karma-jspm. I setup the karma.conf.js file apparently properly and it's giving me the following error:
Uncaught Error: SystemJS was not found. Please make sure you have initialized jspm via installing a dependency with jspm, or by running 'jspm dl-loader'.
I came across the same problem. I fixed it by taking the following steps
Install jspm globally. npm install -g jspm
Now initialise jspm. jspm dl-loader You'll get some prompts like the following.
Would you like jspm to prefix the jspm package.json properties under jspm? [yes]:yes
Enter server baseURL (public folder path) [./]:
Enter jspm packages folder [./jspm_packages]:
Enter config file path [./config.js]:
Configuration file config.js doesn't exist, create it? [yes]:
Enter client baseURL (public folder URL) [/]:
Do you wish to use a transpiler? [yes]:yes
Which ES6 transpiler would you like to use, Babel, TypeScript or Traceur? [babel]:
Hi. I having the following problem with karma-jspm. I setup the karma.conf.js file apparently properly and it's giving me the following error:
karma.conf.js:
SystemJs config file is:
extension/config.js
and it's working fine (outside the test environment).So, how I tell karma-jspm the way to find SystemJs?
Thanks.
The text was updated successfully, but these errors were encountered: