Skip to content

Commit a3da68f

Browse files
authored
ref(ember): Update scenarios and remove a few to speed up tests (#3720)
Tests are pretty slow running all the variations in Ember scenarios, and a few LTS were out of date. Just picking the oldest supported LTS and removed a couple other default tests that shouldn't really check anything we don't cover in 'release'.
1 parent c131874 commit a3da68f

File tree

1 file changed

+2
-42
lines changed

1 file changed

+2
-42
lines changed

packages/ember/config/ember-try.js

Lines changed: 2 additions & 42 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,10 @@ module.exports = async function() {
88
useYarn: true,
99
scenarios: [
1010
{
11-
name: 'ember-lts-3.12',
11+
name: 'ember-lts-3.20',
1212
npm: {
1313
devDependencies: {
14-
'ember-source': '~3.12.0',
15-
},
16-
},
17-
},
18-
{
19-
name: 'ember-lts-3.16',
20-
npm: {
21-
devDependencies: {
22-
'ember-source': '~3.16.0',
14+
'ember-source': '~3.20.0',
2315
},
2416
},
2517
},
@@ -39,39 +31,7 @@ module.exports = async function() {
3931
},
4032
},
4133
},
42-
{
43-
name: 'ember-canary',
44-
allowedToFail: true,
45-
npm: {
46-
devDependencies: {
47-
'ember-source': await getChannelURL('canary'),
48-
},
49-
},
50-
},
5134
embroiderSafe(),
52-
// The default `.travis.yml` runs this scenario via `npm test`,
53-
// not via `ember try`. It's still included here so that running
54-
// `ember try:each` manually or from a customized CI config will run it
55-
// along with all the other scenarios.
56-
{
57-
name: 'ember-default',
58-
npm: {
59-
devDependencies: {},
60-
},
61-
},
62-
{
63-
name: 'ember-default-with-jquery',
64-
env: {
65-
EMBER_OPTIONAL_FEATURES: JSON.stringify({
66-
'jquery-integration': true,
67-
}),
68-
},
69-
npm: {
70-
devDependencies: {
71-
'@ember/jquery': '^0.5.1',
72-
},
73-
},
74-
},
7535
{
7636
name: 'ember-classic',
7737
env: {

0 commit comments

Comments
 (0)