-
-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Specify Karma version compatibility #13
Comments
We do require at least In addition to that, I would prefer to avoid How about we add something to the README as a compromise? |
On npm 3 this shouldn't be a problem anymore, given it doesn't install If you still are not comfortable in adding it as a Thanks again! |
Either way you decide to go, I can prepare a PR. |
Ah, that's a good solution for I think the README is the best solution. We should probably also list the version of Electron we have tested against. I will take care of the README update -- I'm typically picky about what's said/where so I don't want to waste any of your time with back and forth. I will take care of that by the end of the weekend. For my own reference, how were you using |
Awesome, thanks! I still use Karma with PhantomJS for my regular web projects. You can check how I set it up in Sagui a tool to build frontend projects. My use-case with your library is to test an actual Electron app. Would you suggest using it for regular web applications as well? And why? |
This has been patched and released in |
Ah, alright. Thanks for the context =) As a heads up, this is best suited for only testing the renderer portion of an I wouldn't suggest using this for regular web apps. It's typically best to have the testing environment be as close to production as possible. This means the ideal scenario is using an actual browser (e.g. Chrome, Firefox), although both One scenario where it would annoyingly fail would be accidentally relying on something Node.js based but something is different in the browser polyfill (e.g. |
Hi there! Awesome project!
I am having issues making the launcher run and it looks like it is because my Karma version was older than the required one.
I looked into this Karma PR and it seems that
karma-electron
requires Karma at least1.1.0
, is that so?If that is correct, should we add it as a
peerDependency
? I can prepare a PR.The text was updated successfully, but these errors were encountered: