From ffd39ab2f5c1238b3ce49aa44df11a49c8163c6b Mon Sep 17 00:00:00 2001 From: mhsdesign <85400359+mhsdesign@users.noreply.github.com> Date: Mon, 25 Sep 2023 10:21:43 +0200 Subject: [PATCH] TASK: Redo 3592 the fix reappeared in the 9.0 branch #3592 --- Tests/IntegrationTests/utils.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/Tests/IntegrationTests/utils.js b/Tests/IntegrationTests/utils.js index 09597b7ed7..c865e8e4aa 100644 --- a/Tests/IntegrationTests/utils.js +++ b/Tests/IntegrationTests/utils.js @@ -39,10 +39,6 @@ export async function checkPropTypes() { if (error[0] && error[0].search('Warning: Unsafe legacy lifecycles') >= 0) { delete error[0]; } - // Quick fix to be able to use node 16 with testcafe @see https://github.com/DevExpress/testcafe/issues/7097 - if (error[0] && error[0].search('hammerhead.js') >= 0) { - delete error[0]; - } if (error[0]) { console.log('These console errors were the cause of the failed test:', error); }