12 lines
544 B
JavaScript
12 lines
544 B
JavaScript
|
/* global self */
|
||
|
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
||
|
self.deprecationWorkflow.config = {
|
||
|
workflow: [
|
||
|
// ivy-codemirror and ember-radio-button still use send-action
|
||
|
{ handler: 'silence', matchId: 'ember-component.send-action' },
|
||
|
{ handler: 'silence', matchId: 'ember-runtime.deprecate-copy-copyable' },
|
||
|
// ember-cli-page-object uses jquery's this.$() by default - this will change when we remove jquery
|
||
|
{ handler: 'silence', matchId: 'ember-test-helpers.rendering-context.jquery-element' },
|
||
|
],
|
||
|
};
|