I'm trying to integrate SlimerJS with Karma to be able to test ECMAScript 6 and AngularJS code.
When I tested ES6 code directly with SlimerJS it loads the version 0.10.2 that I installed and its works for my ES6 code. My Firefox installed is version 50.1.0 and it works correctly with the SlimerJS when I call it directly through SlimerJS. My SLIMERJSLAUNCHER variable has been configured correctly as the SlimerJS documentation indicates to do.
But I need test AngularJS and ES6 code, so I need Karma, but don't found a way to integrate SlimerJS with Karma.
I tryed to use karma-slimerjs-launcher, but it is loading an older version of both Firefox and SlimerJS. When I call Karma the karma-slimerjs-launcher is running Firefox 38 and SlimerJS 0.9.6 and so I lose support for ECMAScript 6.
There is a way to make karma-slimerjs-launcher call the versions of Firefox and SlimerJS that I have installed on my system instead of calling those "embedded" versions that it seems to bring?
Or there is a better way to integrate Karma and SlimerJS without karma-slimerjs-launcher?
Thanks.