Skip to content
This repository was archived by the owner on Oct 29, 2024. It is now read-only.

Commit d519bfc

Browse files
committed
More modernization
1 parent 25d5384 commit d519bfc

File tree

5 files changed

+49
-199
lines changed

5 files changed

+49
-199
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@
6161
"mkdirp": "^1.0.3",
6262
"npm-run-all": "^4.1.5",
6363
"prettier": "^2.0.2",
64-
"qunit": "^2.9.3",
64+
"qunit": "^2.18.0",
6565
"release-it": "^13.5.7",
6666
"release-it-lerna-changelog": "^2.3.0",
6767
"release-it-yarn-workspaces": "^1.4.0",

packages/@glimmer/component/ember-cli-build.js

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,5 +25,12 @@ module.exports = function (defaults) {
2525
behave. You most likely want to be modifying `./index.js` or app's build file
2626
*/
2727

28-
return app.toTree();
28+
const { maybeEmbroider } = require('@embroider/test-setup');
29+
return maybeEmbroider(app, {
30+
skipBabel: [
31+
{
32+
package: 'qunit',
33+
},
34+
],
35+
});
2936
};

packages/@glimmer/component/test/ember/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
</div>
2929
</div>
3030

31-
<script src="/testem.js" integrity=""></script>
31+
<script src="/testem.js" integrity="" data-embroider-ignore></script>
3232
<script src="{{rootURL}}assets/vendor.js"></script>
3333
<script src="{{rootURL}}assets/test-support.js"></script>
3434
<script src="{{rootURL}}assets/dummy.js"></script>

packages/@glimmer/ssr/test/modifiers-test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ class CustomModifier {
1515
}
1616

1717
class CustomModifierManager implements ModifierManager<CustomModifier> {
18-
capabilities = modifierCapabilities('3.13');
18+
capabilities = modifierCapabilities('3.22');
1919

2020
constructor(private owner: unknown) {}
2121

0 commit comments

Comments
 (0)