From 9dd600dada51e55b11e37f6bae4126865448fe1e Mon Sep 17 00:00:00 2001 From: Robert Jackson Date: Thu, 28 May 2020 22:22:59 -0400 Subject: [PATCH] Update test assertion to work properly. This previously passed by _relying_ on the bug that was fixed in the modules API polyfill. --- node-tests/addon-test.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/node-tests/addon-test.js b/node-tests/addon-test.js index d593e4b4..19c7ff29 100644 --- a/node-tests/addon-test.js +++ b/node-tests/addon-test.js @@ -203,7 +203,7 @@ describe('ember-cli-babel', function() { expect(contents).to.not.include('@ember/debug'); expect(contents).to.include('function _asyncToGenerator'); - expect(contents).to.include('Ember.inspect;'); + expect(contents).to.include('inspect.call'); expect(contents).to.not.include('assert'); })); });