Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions node-tests/addon-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -290,12 +290,12 @@ describe('ember-cli-babel', function() {
it(
"should not replace the imports with Ember Globals when using an ember-source version that supports it",
co.wrap(function* () {
const POST_GLOBAL_RESOLVER_DEPRECATION_VERSION = "3.27.0";
const POST_EMBER_MODULE_IMPORTS_VERSION = "3.27.0";
dependencies[
"ember-source"
] = POST_GLOBAL_RESOLVER_DEPRECATION_VERSION;
] = POST_EMBER_MODULE_IMPORTS_VERSION;
input.write(
buildEmberSourceFixture(POST_GLOBAL_RESOLVER_DEPRECATION_VERSION)
buildEmberSourceFixture(POST_EMBER_MODULE_IMPORTS_VERSION)
);
input.write({
"foo.js": `import Component from '@ember/component'; Component.extend()`,
Expand Down