-
Notifications
You must be signed in to change notification settings - Fork 1.9k
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
Support es6 (import, async await etc) #62
Comments
Supporting import natively in node (JS V8 engine to be precise) is probably never going to happen, just use require instead. |
@yedidyak if you use node v7.1.0 and up you can add |
new async await api is no in master, check out the test project. upcoming detox version (5.0.0) breaks the api completely in favor of async await. Use node 7.6.0 and never babelify again. |
Why can't i use import syntax? |
AFAIK it is still not supported natively in node: https://nodejs.org/api/esm.html#esm_unsupported You can use import if you Babel your tests. |
Migrate your specs from |
No description provided.
The text was updated successfully, but these errors were encountered: