linstrom/frontend-reactive/tests/test-helper.ts

13 lines
347 B
TypeScript
Raw Normal View History

import Application from 'frontend-reactive/app';
import config from 'frontend-reactive/config/environment';
2024-08-22 17:57:53 +00:00
import * as QUnit from 'qunit';
import { setApplication } from '@ember/test-helpers';
import { setup } from 'qunit-dom';
import { start } from 'ember-qunit';
setApplication(Application.create(config.APP));
setup(QUnit.assert);
start();