mirror of
https://github.com/logto-io/logto.git
synced 2024-12-23 20:33:16 -05:00
10 lines
257 B
JavaScript
10 lines
257 B
JavaScript
/** @type {import('jest').Config} */
|
|
const config = {
|
|
preset: 'jest-puppeteer',
|
|
moduleNameMapper: {
|
|
'^#src/(.*)\\.js(x)?$': '<rootDir>/lib/$1',
|
|
'^(chalk|inquirer)$': '<rootDir>/../shared/lib/esm/module-proxy.js',
|
|
},
|
|
};
|
|
|
|
export default config;
|