Skip to content

Incompatibile with RFC 232 #18

@alexdiliberto

Description

@alexdiliberto

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:

Metadata

Metadata

Assignees

No one assigned

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions