ember-codemods / ember-qunit-codemod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Dynamically generated integrations tests not handled

panthony opened this issue · comments

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
    });
  });