Skip to content

Commit 7e1e966

Browse files
committed
Fix CI errors around @ember/polyfills on Ember 5.3+
1 parent b5ae773 commit 7e1e966

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

config/ember-try.js

+20
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,11 @@ module.exports = async function () {
4444
npm: {
4545
devDependencies: {
4646
'ember-source': '~5.3.0',
47+
48+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
49+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
50+
'@ember/test-helpers': '^2.9.3',
51+
'ember-qunit': '^6.0.0',
4752
},
4853
},
4954
},
@@ -52,6 +57,11 @@ module.exports = async function () {
5257
npm: {
5358
devDependencies: {
5459
'ember-source': emberReleaseVersion,
60+
61+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
62+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
63+
'@ember/test-helpers': '^2.9.3',
64+
'ember-qunit': '^6.0.0',
5565
},
5666
},
5767
},
@@ -60,6 +70,11 @@ module.exports = async function () {
6070
npm: {
6171
devDependencies: {
6272
'ember-source': await getChannelURL('beta'),
73+
74+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
75+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
76+
'@ember/test-helpers': '^2.9.3',
77+
'ember-qunit': '^6.0.0',
6378
},
6479
},
6580
},
@@ -68,6 +83,11 @@ module.exports = async function () {
6883
npm: {
6984
devDependencies: {
7085
'ember-source': await getChannelURL('canary'),
86+
87+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
88+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
89+
'@ember/test-helpers': '^2.9.3',
90+
'ember-qunit': '^6.0.0',
7191
},
7292
},
7393
},

0 commit comments

Comments
 (0)