From 153d15de2c42f499a0fcfb006409ba1f4e0ed56e Mon Sep 17 00:00:00 2001 From: luke-h1 Date: Sun, 4 Aug 2024 21:04:26 +0100 Subject: [PATCH] fix(tests): fix jest tests running playwright tests --- jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jest.config.js b/jest.config.js index 7c49271..a453b80 100644 --- a/jest.config.js +++ b/jest.config.js @@ -6,7 +6,7 @@ const config = { verbose: true, setupFiles: ['dotenv/config'], resetMocks: true, - testPathIgnorePatterns: ['/node_modules/', '/dist/'], + testPathIgnorePatterns: ['/node_modules/', '/dist/', 'e2e'], transform: { '^.+\\.(ts|js)$': 'ts-jest', },