Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Change name of variable to be more accurate #388

Merged
merged 1 commit into from
Mar 18, 2021
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