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
Changing the environment to node v8 and deploying doesn't work.
The text was updated successfully, but these errors were encountered:
I recommend that the Docs are changed to state that this package only currently works for Node 6.10
Sorry, something went wrong.
as mentioned on #25 to run on 8.10 we just have to update the nodejs on .babelrc("8.10") and on serverless.yml (nodejs8.10) and change the handler to:
exports.handler = async (event) => { let result; let browser; try { browser = await setup.getBrowser(); result = await exports.run(browser); } catch (err) { console.log(err); return err; } return result; };
No branches or pull requests
Changing the environment to node v8 and deploying doesn't work.
The text was updated successfully, but these errors were encountered: