/* * @Date: 2024-05-10 14:19:56 * @LastEditors: maggieyyy * @LastEditTime: 2024-05-10 15:55:29 * @FilePath: \frontend\jest.config.js */ module.exports = { roots: ['/packages'], testMatch: ['**/__tests__/**/*.+(ts|tsx|js)', '**/?(*.)+(spec|test).+(ts|tsx|js)'], transform: { '^.+\\.(ts|tsx)$': 'ts-jest', }, testEnvironment: 'jsdom', moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json'], testPathIgnorePatterns: ['/node_modules/', '/dist/'], setupFilesAfterEnv: ['/jest.setup.js'], };