File tree 2 files changed +4
-8
lines changed
2 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -190,12 +190,12 @@ module.exports = function (defaults) {
190
190
*/
191
191
disableContainerStyles: true ,
192
192
/**
193
- * default: 'ember '
194
- * options: 'ember ' | 'qunit-default '
193
+ * default: 'qunit-default '
194
+ * options: 'qunit-default ' | 'ember '
195
195
*
196
196
* Sets the theme for the Web UI of the test runner. Use a different value to disable loading any theme, allowing you to provide your own external one.
197
197
*/
198
- theme: ' ember ' ,
198
+ theme: ' qunit-default ' ,
199
199
},
200
200
},
201
201
},
Original file line number Diff line number Diff line change @@ -18,11 +18,7 @@ if (macroCondition(!getOwnConfig()?.disableContainerStyles)) {
18
18
importSync ( './test-container-styles.css' ) ;
19
19
}
20
20
21
- if (
22
- macroCondition (
23
- getOwnConfig ( ) ?. theme === undefined || getOwnConfig ( ) ?. theme === 'ember'
24
- )
25
- ) {
21
+ if ( macroCondition ( getOwnConfig ( ) ?. theme === 'ember' ) ) {
26
22
importSync ( 'qunit-theme-ember/qunit.css' ) ;
27
23
}
28
24
You can’t perform that action at this time.
0 commit comments