From 71962ce3695c61c845e7a448f4640abf5e283617 Mon Sep 17 00:00:00 2001 From: nemo-shen Date: Mon, 13 Dec 2021 23:44:51 +0800 Subject: [PATCH] fix(jest): adjust config --- jest.config.js | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/jest.config.js b/jest.config.js index 74cac21c..96fd0b65 100644 --- a/jest.config.js +++ b/jest.config.js @@ -5,14 +5,15 @@ module.exports = { testURL: 'https://jest.test', moduleFileExtensions: ['js', 'ts'], testMatch: ['/packages/**/test/**/*.spec.{js,ts}'], + transformIgnorePatterns: ["/node_modules/(?!@vant/)"], transform: { - "^.+\\.jsx?$": "babel-jest", // Adding this line solved the issue - "^.+\\.tsx?$": "ts-jest" + "^.+\\.js?$": "babel-jest", // Adding this line solved the issue + "^.+\\.ts?$": "ts-jest" }, collectCoverageFrom: [ '/packages/**/*.{js,ts}', '!**/test/**' ], preset: "ts-jest", - snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin'], + snapshotSerializers: ['miniprogram-simulate/jest-snapshot-plugin'] }