adopted-ember-addons / ember-qunit-nice-errors

Because expected true, result false is not enough!
http://wyeworks.github.io/ember-qunit-nice-errors/
MIT License
55 stars 12 forks source link

Arrow functions #66

Open yratanov opened 5 years ago

yratanov commented 5 years ago

It doesn't seem to work in Acceptance tests with Ember 3.9 + ember-qunit: 3.5.3

yratanov commented 5 years ago

I found the issue:


// Works:

test('test transform', async function(assert) {
    assert.equal(0, 1);
 })

// Doesn't work:

test('test transform', async assert => {
    assert.equal(0, 1);
  })
san650 commented 5 years ago

Thanks for reporting the issue @yratanov