ember-qunit-codemod
ember-qunit-codemod copied to clipboard
Dynamically generated integrations tests not handled
The following pattern is not handled by codemod, don't know if worth handling or not:
[
[ "input", "expected" ]
].forEach(([ input, expected ]) => {
test(`it handles ${input}`, function(assert) {
this.render(hbs`{{component input=input}}`);
// asserts
});
});