Skip to content

Commit

Permalink
Fix node tests
Browse files Browse the repository at this point in the history
  • Loading branch information
bertdeblock committed Aug 18, 2023
1 parent 1fa4afe commit cc45f98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions node-tests/addon-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -1242,7 +1242,7 @@ describe('ember-cli-babel', function() {
expect(
output.read()
).to.deep.equal({
'foo.js': `define("foo", [], function () {\n "use strict";\n\n var foo = "hi";\n});`
'foo.js': `define("foo", [], function () {\n "use strict";\n\n let foo = "hi";\n});`
});
}));

Expand Down Expand Up @@ -2048,7 +2048,7 @@ describe('EmberData Packages Polyfill', function() {
assembleLines([
`Object.defineProperty(_exports, "default", {`,
` enumerable: true,`,
` get: function get() {`,
` get: function () {`,
` return _emberData.default;`,
` }`,
`});`
Expand Down

0 comments on commit cc45f98

Please sign in to comment.