We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
process.on("uncaughtException", exception => { process.exit(appProc.pid); // switched kill to exit, else invalid pid error throw new Error(exception); });
script should be something like this for webpack dev server
//start cmd defined then passed as arg[0] "start": "webpack-dev-server --mode development --hot --progress --color --port 3000 --open", "startWithCypress": "cross-env WAIT_FOR_MESSAGE=\"Compiled\" cypressAppWatcher start"
then I changed the spawn command:
appProc = spawn(/^win/.test(process.platform) ? 'npm.cmd' : 'npm', ['run', myArgs[0]]);
The text was updated successfully, but these errors were encountered:
Hello @matt-erhart ! Thank you for giving this a try and sharing the feedback. Unfortunately, I'm not sure what to do with this message.
Where is that first snippet of code that catches exceptions from?
The second part - do I understand correctly that the cross-env is needed for windows?
The spawn command - is this (and maybe updated docs with a section for windows?) something you could send us a PR for? I'd really appreciate it!
Sorry, something went wrong.
No branches or pull requests
script should be something like this for webpack dev server
then I changed the spawn command:
The text was updated successfully, but these errors were encountered: