From 4c76133d3a94e119d5b4d44846213df42d3010a5 Mon Sep 17 00:00:00 2001 From: freshgum Date: Sun, 4 Aug 2024 01:40:29 +0100 Subject: [PATCH] style(test): prettier Jest config --- jest.config.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/jest.config.js b/jest.config.js index a0968a1d..1c085c5c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,9 +11,7 @@ const configuration = { '^.+\\.(m?[tj]sx?)$': ['ts-jest', { tsconfig: TYPESCRIPT_CONFIGURATIONS.Spec }], }, resolver: '/scripts/testing/jest/moduleResolver.cjs', - testPathIgnorePatterns: [ - 'src/contrib/upstream' - ] + testPathIgnorePatterns: ['src/contrib/upstream'], }; module.exports = configuration;