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
Would be nice to support ES6 built-in at runtime by using the Babel require hook.
That way you can just write your tests in ES6 and have it run in any node version.
This is so nice:
test(t => { t.ok(); t.end(); });
The text was updated successfully, but these errors were encountered:
May be use flag --esnext?
{ "scripts": { "test": "ava --esnext" } }
Sorry, something went wrong.
I was thinking ES2015 support by default. Can't think of any reason not to want ES2015 when there's no setup cost.
It would be better then with flag.
4e2dce3
Close #23 PR: Add ES2015 support to CLI. Fixes #20
eb6343e
No branches or pull requests
Would be nice to support ES6 built-in at runtime by using the Babel require hook.
That way you can just write your tests in ES6 and have it run in any node version.
This is so nice:
The text was updated successfully, but these errors were encountered: