Bug 1725952 Comment 0 Edit History

Note: The actual edited comment in the bug view page will always show the original commenter’s name and original timestamp.

https://github.com/eslint/eslint/blob/master/docs/user-guide/migrating-to-8.0.0.md

Although the actual release is not yet there, the migration guide is now published. Probably a good chance to deal with breaking changes.

This release adds Top Level Await support and thus should allow:

```html
<script type=module>
SimpleTest.waitForExplicitFinish();
await SimpleTest.promiseFocus(); // Currently ESLint v7 blocks this
</script>
https://github.com/eslint/eslint/blob/master/docs/user-guide/migrating-to-8.0.0.md

Although the actual release is still in beta stage, the migration guide is now published. Probably a good chance to deal with breaking changes.

This release adds Top Level Await support and thus should allow:

```html
<script type=module>
SimpleTest.waitForExplicitFinish();
await SimpleTest.promiseFocus(); // Currently ESLint v7 blocks this
</script>

Back to Bug 1725952 Comment 0