Skip to content

Commit

Permalink
Migrate to ember-qunit v9
Browse files Browse the repository at this point in the history
Explicitly invoke `loadTests()` and `setupEmberOnerrorValidation()`

emberjs/ember-qunit#1182
  • Loading branch information
andreyfel committed Dec 24, 2024
1 parent 841f761 commit da16377
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion test-app/tests/test-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ import config from 'test-app/config/environment';
import * as QUnit from 'qunit';
import { setApplication } from '@ember/test-helpers';
import { setup } from 'qunit-dom';
import { start } from 'ember-qunit';
import { loadTests } from 'ember-qunit/test-loader';
import { start, setupEmberOnerrorValidation } from 'ember-qunit';

setupEmberOnerrorValidation();
loadTests();

setApplication(Application.create(config.APP));

Expand Down

0 comments on commit da16377

Please sign in to comment.