File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105105 - ember-canary
106106 - ember-default
107107 - embroider-safe
108- # - embroider-optimized # see comments in ember-try.js
108+ - embroider-optimized
109109
110110 steps :
111111 - uses : actions/checkout@v4
Original file line number Diff line number Diff line change 11'use strict' ;
22
33const getChannelURL = require ( 'ember-source-channel-url' ) ;
4- const { embroiderSafe } = require ( '@embroider/test-setup' ) ;
4+ const { embroiderSafe, embroiderOptimized } = require ( '@embroider/test-setup' ) ;
55const latestVersion = require ( 'latest-version' ) ;
66
77module . exports = async function ( ) {
@@ -122,19 +122,7 @@ module.exports = async function () {
122122 } ,
123123 } ,
124124 embroiderSafe ( ) ,
125- // disable embroider optimized test scenarios, as the dynamism these
126- // tests use is not compatible with embroider we are still exploring
127- // appropriate paths forward.
128- //
129- // Steps to re-enable:
130- //
131- // 1. have a strategy to make this work, import from '@embroider/test-setup'
132- // 2. uncomment the next line
133- // embroiderOptimized();
134- //
135- // 3. add "embroider-optimized" to .github/workflows/ci-build.yml's
136- // ember-try-scenario list.
137- //
125+ embroiderOptimized ( ) ,
138126 ] ,
139127 } ;
140128} ;
Original file line number Diff line number Diff line change @@ -7,5 +7,6 @@ module.exports = function (defaults) {
77 // Add options here
88 } ) ;
99
10- return app . toTree ( ) ;
10+ const { maybeEmbroider } = require ( '@embroider/test-setup' ) ;
11+ return maybeEmbroider ( app ) ;
1112} ;
You can’t perform that action at this time.
0 commit comments