Skip to content

Commit 288f080

Browse files
committed
fix more deprecations for Ember 6.x
1 parent a5c197a commit 288f080

File tree

3 files changed

+67
-53
lines changed

3 files changed

+67
-53
lines changed

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
"@babel/eslint-parser": "^7.22.15",
3737
"@babel/plugin-proposal-decorators": "^7.23.2",
3838
"@ember/optional-features": "^2.0.0",
39-
"@ember/test-helpers": "3.2.0",
39+
"@ember/test-helpers": "5.2.2",
40+
"@ember/test-waiters": "^4.1.0",
4041
"@embroider/test-setup": "^3.0.2",
4142
"@glimmer/component": "^1.1.2",
4243
"@glimmer/tracking": "^1.1.2",
@@ -52,7 +53,7 @@
5253
"ember-cli-terser": "^4.0.2",
5354
"ember-load-initializers": "^2.1.2",
5455
"ember-page-title": "^9.0.2",
55-
"ember-qunit": "~8.0.1",
56+
"ember-qunit": "~9.0.3",
5657
"ember-resolver": "^13.1.1",
5758
"ember-source": "~5.4.0",
5859
"ember-source-channel-url": "^3.0.0",

pnpm-lock.yaml

Lines changed: 60 additions & 50 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/test-helper.js

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
import Application from 'dummy/app';
22
import config from 'dummy/config/environment';
33
import { setApplication } from '@ember/test-helpers';
4-
import { start } from 'ember-qunit';
4+
import { loadTests } from 'ember-qunit/test-loader';
5+
import { start, setupEmberOnerrorValidation } from 'ember-qunit';
56

7+
setupEmberOnerrorValidation();
8+
loadTests();
69
setApplication(Application.create(config.APP));
710

811
start();

0 commit comments

Comments
 (0)