From b8c255fd13047695b7efc8f4e59dc422b0d83df3 Mon Sep 17 00:00:00 2001 From: Julien Calixte Date: Sat, 1 Jul 2023 23:12:23 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20(jest)=20remove=20all=20jest=20r?= =?UTF-8?q?eferences?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .eslintrc.js | 8 +------- jest.config.js | 6 ------ 2 files changed, 1 insertion(+), 13 deletions(-) delete mode 100644 jest.config.js diff --git a/.eslintrc.js b/.eslintrc.js index 99aab62..36c89a5 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -42,13 +42,7 @@ module.exports = { }, overrides: [ { - files: [ - '**/__tests__/*.{j,t}s?(x)', - '**/tests/unit/**/*.spec.{j,t}s?(x)' - ], - env: { - jest: true - } + files: ['**/__tests__/*.{j,t}s?(x)', '**/tests/unit/**/*.spec.{j,t}s?(x)'] } ] } diff --git a/jest.config.js b/jest.config.js deleted file mode 100644 index d7f13cc..0000000 --- a/jest.config.js +++ /dev/null @@ -1,6 +0,0 @@ -module.exports = { - preset: '@vue/cli-plugin-unit-jest/presets/typescript-and-babel', - transform: { - '^.+\\.vue$': 'vue-jest' - } -}