diff --git a/.eslintrc.js b/.eslintrc.js
index e202a32a59797712873ec0cf037f8569d7a03210..94eed734ce9579f7d265a0980839df67646d1e8f 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -53,8 +53,14 @@ module.exports = {
       rules: {
         'jest/no-mocks-import': 0,
 
-        // Might be fixed with "@testing-library/dom" v10 but it requires node 18 or above
+        // Act warning -> should be fixed with "@testing-library/dom" v10 but it requires node 18 or above
         'testing-library/no-unnecessary-act': 0,
+
+        // For testing View components which renders other components -> implementation tests ?
+        'testing-library/no-container': 0,
+
+        // Allows checking classes on containers -> could be fixed
+        'testing-library/no-node-access': 0,
       },
     },
   ],