Skip to content

Commit eb7b00d

Browse files
committed
Fix CI errors around @ember/polyfills on Ember 5.3+
1 parent a9a25da commit eb7b00d

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

tests/dummy/config/ember-try.js

+20
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,11 @@ module.exports = async function () {
5252
npm: {
5353
devDependencies: {
5454
'ember-source': '~5.3.0',
55+
56+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
57+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
58+
'@ember/test-helpers': '^2.9.3',
59+
'ember-qunit': '^6.0.0',
5560
},
5661
},
5762
},
@@ -60,6 +65,11 @@ module.exports = async function () {
6065
npm: {
6166
devDependencies: {
6267
'ember-source': emberReleaseVersion,
68+
69+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
70+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
71+
'@ember/test-helpers': '^2.9.3',
72+
'ember-qunit': '^6.0.0',
6373
},
6474
},
6575
},
@@ -68,6 +78,11 @@ module.exports = async function () {
6878
npm: {
6979
devDependencies: {
7080
'ember-source': await getChannelURL('beta'),
81+
82+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
83+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
84+
'@ember/test-helpers': '^2.9.3',
85+
'ember-qunit': '^6.0.0',
7186
},
7287
},
7388
},
@@ -76,6 +91,11 @@ module.exports = async function () {
7691
npm: {
7792
devDependencies: {
7893
'ember-source': await getChannelURL('canary'),
94+
95+
// When this addon is upgraded to Ember 5.3+, this line should be moved into package.json,
96+
// and instead Ember 3.x scenarios should have test-helpers fixed at 2.x
97+
'@ember/test-helpers': '^2.9.3',
98+
'ember-qunit': '^6.0.0',
7999
},
80100
},
81101
},

0 commit comments

Comments
 (0)