af4ed3bab0
no issue - silences current deprecations so that Travis doesn't fail due to test logs being too long
16 lines
842 B
JavaScript
16 lines
842 B
JavaScript
self.deprecationWorkflow = self.deprecationWorkflow || {};
|
|
self.deprecationWorkflow.config = {
|
|
workflow: [
|
|
{handler: 'silence', matchId: 'ember-views.curly-components.jquery-element'},
|
|
{handler: 'silence', matchId: 'computed-property.volatile'},
|
|
{handler: 'silence', matchId: 'computed-property.override'},
|
|
{handler: 'silence', matchId: 'application-controller.router-properties'},
|
|
{handler: 'silence', matchId: 'events.remove-all-listeners'},
|
|
{handler: 'silence', matchId: 'object.new-constructor'},
|
|
{handler: 'silence', matchId: 'ember-polyfills.deprecate-merge'},
|
|
{handler: 'silence', matchId: 'events.inherited-function-listeners'},
|
|
{handler: 'silence', matchId: 'ember-component.send-action'},
|
|
{handler: 'silence', matchId: 'transition-state'}
|
|
]
|
|
};
|