From 55afa1f3ac102507c53702cd5aa2a52584cfa418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A1n=20Jakub=20Nani=C5=A1ta?= Date: Wed, 10 Jan 2024 13:32:27 -0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Don't=20allow=20skip=20in=20test?= =?UTF-8?q?s=20(#185)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.eslintrc.json b/.eslintrc.json index 0dfa26ef6..4f450bcea 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -18,7 +18,10 @@ { "files": ["test/**"], "plugins": ["jest"], - "extends": ["plugin:jest/recommended"] + "extends": ["plugin:jest/recommended"], + "rules": { + "jest/no-disabled-tests": "error" + } } ], "parserOptions": {