Silenced "isVisible" deprecation

no issue

- it's being caused by the `ember-infinity` addon and was making test output rather noisy
- revert once `ember-inifinity` has a release removing `isVisible` and we've upgraded
This commit is contained in:
Kevin Ansfield 2020-01-07 11:25:06 +00:00
parent ce78528a85
commit 571784ba3f

View File

@ -7,6 +7,9 @@ self.deprecationWorkflow.config = {
{handler: 'silence', matchId: 'events.remove-all-listeners'},
{handler: 'silence', matchId: 'ember-polyfills.deprecate-merge'},
{handler: 'silence', matchId: 'events.inherited-function-listeners'},
{handler: 'silence', matchId: 'ember-component.send-action'}
{handler: 'silence', matchId: 'ember-component.send-action'},
// revert once ember-infinity removes usage of `isVisible`
// https://github.com/ember-infinity/ember-infinity/pull/399
{handler: 'silence', matchId: 'ember-component.is-visible'}
]
};