mirror of https://github.com/rancher/ui.git
11 lines
446 B
JavaScript
11 lines
446 B
JavaScript
import Application from '../app';
|
|
import config from '../config/environment';
|
|
import { setApplication } from '@ember/test-helpers';
|
|
import { start } from 'ember-qunit';
|
|
import preloadAssets from 'ember-asset-loader/test-support/preload-assets';
|
|
import manifest from 'ui/config/asset-manifest';
|
|
|
|
setApplication(Application.create(config.APP));
|
|
|
|
preloadAssets(manifest).then(start); // This ensures all engine resources are loaded before the tests
|