ember-qunit-codemod
ember-qunit-codemod copied to clipboard
imports with `as` get corrupted
Turns
import {
setupTest as _setupTest,
setupRenderingTest as _setupRenderingTest
} from 'ember-qunit';
into
import {
setupTest,
setupRenderingTest
} from 'ember-qunit';
That's the only change in the file, the corresponding uses were not touched.
Awesome, thank you for reporting!
@rondale-sc and I noticed this while working on a different codemod (that was using this one as a starting point). I’m fairly certain of the fix...
I just ran into this problem.