mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
34 lines
886 B
TypeScript
34 lines
886 B
TypeScript
|
import type { Config } from '@jest/types';
|
||
|
|
||
|
const config: Config.InitialOptions = {
|
||
|
roots: ['<rootDir>/src'],
|
||
|
testEnvironment: 'jsdom',
|
||
|
setupFilesAfterEnv: ['<rootDir>/jest.setup.ts'],
|
||
|
transform: {
|
||
|
'^.+\\.(t|j)sx?$': [
|
||
|
'@swc/jest',
|
||
|
{
|
||
|
sourceMaps: true,
|
||
|
jsc: {
|
||
|
transform: {
|
||
|
react: {
|
||
|
runtime: 'automatic',
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
},
|
||
|
],
|
||
|
'\\.(svg)$': 'jest-transformer-svg',
|
||
|
'\\.(png)$': 'jest-transform-stub',
|
||
|
},
|
||
|
moduleNameMapper: {
|
||
|
'^@/(.*)$': '<rootDir>/src/$1',
|
||
|
'^@logto/app-insights/(.*)$': '<rootDir>/../app-insights/lib/$1',
|
||
|
'^@logto/shared/(.*)$': '<rootDir>/../shared/lib/$1',
|
||
|
'\\.module\\.(css|sass|scss)$': 'identity-obj-proxy',
|
||
|
},
|
||
|
transformIgnorePatterns: ['node_modules/(?!(.*(nanoid|jose|ky|@logto|@silverhand))/)'],
|
||
|
};
|
||
|
|
||
|
export default config;
|