From 3d86d00d5cffc8929e5e1903bd76e85832ebdbfc Mon Sep 17 00:00:00 2001 From: "Xunnamius (Romulus)" Date: Fri, 1 Jul 2022 02:12:14 -0700 Subject: [PATCH] test(eslintrc): silence annoying eslint warnings --- .eslintrc.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.eslintrc.js b/.eslintrc.js index 2dcc1f4..e467b7a 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -99,7 +99,8 @@ module.exports = { 'jest/no-commented-out-tests': 'warn', 'jest/require-hook': 'off', 'jest/no-alias-methods': 'off', - 'jest/no-conditional-in-test': 'off' + 'jest/no-conditional-in-test': 'off', + 'jest/no-conditional-expect': 'off' } } ],