From cfe868b0c1eaed75d6ccaa464de8699965f14da7 Mon Sep 17 00:00:00 2001 From: Himanshu Tyagi Date: Thu, 29 Aug 2024 14:17:23 -0700 Subject: [PATCH] Added deprecation workflow for component-template-resolving --- tests/dummy/config/deprecation-workflow.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/dummy/config/deprecation-workflow.js b/tests/dummy/config/deprecation-workflow.js index 64fba207..b7d4d690 100644 --- a/tests/dummy/config/deprecation-workflow.js +++ b/tests/dummy/config/deprecation-workflow.js @@ -9,5 +9,8 @@ window.deprecationWorkflow = window.deprecationWorkflow || {}; window.deprecationWorkflow.config = { // If we uncomment the line below, any unhandled error i.e a new error introduced would fail the tests. throwOnUnhandled: true, - workflow: [{ handler: 'silence', matchId: 'ember-string.add-package' }], + workflow: [ + { handler: 'silence', matchId: 'ember-string.add-package' }, + { handler: 'silence', matchId: 'component-template-resolving' } + ], };