-
Notifications
You must be signed in to change notification settings - Fork 8
Incompatibile with RFC 232 #18
Copy link
Copy link
Open
Labels
Description
The RFC essentially makes rendering async, which means that if you were doing:
assert.expectAssertion(() => {
this.render(hbs`stuff here`);
});Then the codemod "helpfully" transforms that into:
assert.expectAssertion(async () => {
await render(hbs`stuff here`);
});But this library always expects the callback to trigger assertions synchronously.
Further reading:
Reactions are currently unavailable