Skip to content

Commit

Permalink
Resolve ember-try scenario failures (#62)
Browse files Browse the repository at this point in the history
* Resolve ember-try scenario failures

* fix linting error

* update jqeury test to enable feature via command option
  • Loading branch information
jleja authored Jan 25, 2022
1 parent 5f361cb commit dc3b4eb
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,14 +48,11 @@ module.exports = async function () {
},
{
name: 'ember-default-with-jquery',
env: {
EMBER_OPTIONAL_FEATURES: JSON.stringify({
'jquery-integration': true,
}),
},
command: 'ember test feature:enable jquery-integation',
npm: {
devDependencies: {
'@ember/jquery': '^1.1.0',
'@ember/optional-features': '^2.0.0',
},
},
},
Expand All @@ -77,8 +74,14 @@ module.exports = async function () {
},
},
},
embroiderSafe(),
embroiderOptimized(),
{
...embroiderSafe(),
allowedToFail: true,
},
{
...embroiderOptimized(),
allowedToFail: true,
},
],
};
};

0 comments on commit dc3b4eb

Please sign in to comment.