Skip to content

Commit

Permalink
hm
Browse files Browse the repository at this point in the history
  • Loading branch information
NullVoxPopuli committed Dec 28, 2024
1 parent b50061c commit 45a35c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test-app/config/ember-try.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ const { embroiderSafe, embroiderOptimized } = require('@embroider/test-setup');
module.exports = async function () {
const ember4Deps = {
'ember-cli': '~4.12.0',
'ember-qunit': '^9.0.1',
'ember-maybe-import-regenerator': '^1.0.0',
};

Expand All @@ -28,7 +29,6 @@ module.exports = async function () {
'@ember/test-helpers': '^4.0.4',
'ember-cli': '^6.1.0',
'ember-load-initializers': '^3.0.1',
'ember-qunit': '^9.0.1',
'ember-resolver': '^13.1.0',
typescript: '^5.7.0',
};
Expand Down
5 changes: 4 additions & 1 deletion test-app/tests/test-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ import { getSettledState, resetOnerror, setApplication } from '@ember/test-helpe
import { getPendingWaiterState, getWaiters } from '@ember/test-waiters';
import * as QUnit from 'qunit';
import { setup } from 'qunit-dom';
import { start } from 'ember-qunit';
import { setupEmberOnerrorValidation, start } from 'ember-qunit';
import { loadTests } from 'ember-qunit/test-loader';

import Application from 'test-app/app';
import config from 'test-app/config/environment';
Expand All @@ -22,4 +23,6 @@ QUnit.testDone(function () {
// Prevent global Errors from breaking tests
window.onerror = console.error;

setupEmberOnerrorValidation();
loadTests();
start();

0 comments on commit 45a35c0

Please sign in to comment.