From 612974ef42d383a3e8d80db34d9257a526f11c9f Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 4 Oct 2021 17:59:32 +0530 Subject: [PATCH] fix ts-jest warnings --- libs/remix-tests/jest.config.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/remix-tests/jest.config.js b/libs/remix-tests/jest.config.js index 0f08d413b7..6e6de8df08 100644 --- a/libs/remix-tests/jest.config.js +++ b/libs/remix-tests/jest.config.js @@ -6,7 +6,7 @@ module.exports = { transform: { '^.+\\.[tj]sx?$': 'ts-jest', }, - transformIgnorePatterns: ["/node_modules/", "\\.pnp\\.[^\\\/]+$"], + transformIgnorePatterns: ["/node_modules/", "/dist/", "\\.pnp\\.[^\\\/]+$"], rootDir: "./", testTimeout: 40000, moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'html', 'json'],