You can use async/await
in your Ember testing suite, today! This blog post explains the situation pretty thoroughly.
There are three ways we can get it to work. If you try it without any changes, you will get the error regeneratorRuntime is not defined
.
One way to get around this is to enable every polyfill - but that's pretty big to include in your production application code unnecessarily (30kb minified & gzipped).
This also lets you use async/await
in your app code.