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.
12 lines
504 B
JavaScript
12 lines
504 B
JavaScript
/* global self */
|
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
{ handler: 'throw', matchId: 'ember-inflector.globals' },
|
|
{ handler: 'throw', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
|
{ handler: 'throw', matchId: 'ember-console.deprecate-logger' },
|
|
{ handler: 'throw', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
|
|
{ handler: 'throw', matchId: 'ember-cli-page-object.is-property' },
|
|
],
|
|
};
|