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
{{ message }}
This repository has been archived by the owner on Jul 24, 2019. It is now read-only.
Version: 2.1.15
Node version: 8.9.x
OS: Windows 10 x64
After install, the module generates a location.js that looks like this: module.exports.location = 'C:\ui\proj\node_modules\phantomjs-bin\bin\win32\phantomjs.exe';
It should instead generate like this: module.exports.location = 'C:\\ui\\proj\\node_modules\\phantomjs-bin\\bin\\win32\\phantomjs.exe';
This causes launch to fail until you do something like this to your karma conf (pick your poison on test runners): require('phantomjs-prebuilt').path = 'C:\\ui\\proj\\node_modules\\phantomjs-bin\\bin\\win32\\phantomjs.exe'
This issue occurs kind of inconsistently across machines but I've experienced it on at least two so far.
The text was updated successfully, but these errors were encountered:
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Version: 2.1.15
Node version: 8.9.x
OS: Windows 10 x64
After install, the module generates a location.js that looks like this:
module.exports.location = 'C:\ui\proj\node_modules\phantomjs-bin\bin\win32\phantomjs.exe';
It should instead generate like this:
module.exports.location = 'C:\\ui\\proj\\node_modules\\phantomjs-bin\\bin\\win32\\phantomjs.exe';
This causes launch to fail until you do something like this to your karma conf (pick your poison on test runners):
require('phantomjs-prebuilt').path = 'C:\\ui\\proj\\node_modules\\phantomjs-bin\\bin\\win32\\phantomjs.exe'
This issue occurs kind of inconsistently across machines but I've experienced it on at least two so far.
The text was updated successfully, but these errors were encountered: