ember-qunit-nice-errors icon indicating copy to clipboard operation
ember-qunit-nice-errors copied to clipboard

Arrow functions

Open yratanov opened this issue 5 years ago • 2 comments

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

yratanov avatar Apr 30 '19 01:04 yratanov

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

yratanov avatar Apr 30 '19 04:04 yratanov

Thanks for reporting the issue @yratanov

san650 avatar Apr 30 '19 13:04 san650