95c938b75b
This is part of #7834’s jQuery removal goal. It addresses a couple of jQuery-related deprecation warnings and also uses “native events mode” for ember-cli-page-object, which is needed so it doesn’t have to use jQuery via the Ember global.
13 lines
330 B
JavaScript
13 lines
330 B
JavaScript
import 'core-js';
|
|
import Application from '../app';
|
|
import config from '../config/environment';
|
|
import { setApplication } from '@ember/test-helpers';
|
|
import { start } from 'ember-qunit';
|
|
import { useNativeEvents } from 'ember-cli-page-object/extend';
|
|
|
|
useNativeEvents();
|
|
|
|
setApplication(Application.create(config.APP));
|
|
|
|
start();
|