ember-qunit-codemod icon indicating copy to clipboard operation
ember-qunit-codemod copied to clipboard

Dynamically generated integrations tests not handled

Open panthony opened this issue 6 years ago • 0 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
    });
  });

panthony avatar Mar 28 '18 08:03 panthony