diff --git a/tests/dummy/config/ember-try.js b/tests/dummy/config/ember-try.js index ae4da213..7e27ef53 100644 --- a/tests/dummy/config/ember-try.js +++ b/tests/dummy/config/ember-try.js @@ -3,16 +3,6 @@ const getChannelURL = require('ember-source-channel-url'); const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup'); -const embroiderSafeScenario = embroiderSafe(); -embroiderSafeScenario.npm.dependencies = { - 'ember-cli-htmlbars': '^5.3.2', -}; - -const embroiderOptimizedScenario = embroiderOptimized(); -embroiderOptimizedScenario.npm.dependencies = { - 'ember-cli-htmlbars': '^5.3.2', -}; - module.exports = async function () { return { scenarios: [ @@ -82,8 +72,8 @@ module.exports = async function () { }, }, }, - embroiderSafeScenario, - embroiderOptimizedScenario, + embroiderSafe(), + embroiderOptimized(), ], }; };