0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2024-12-16 20:26:19 -05:00
logto/packages/integration-tests/jest.config.ui.js

13 lines
391 B
JavaScript

/** @type {import('jest').Config} */
const config = {
transform: {},
preset: 'jest-puppeteer',
setupFilesAfterEnv: ['jest-matcher-specific-error', './jest.setup.js'],
moduleNameMapper: {
'^#src/(.*)\\.js(x)?$': '<rootDir>/lib/$1',
'^(chalk|inquirer)$': '<rootDir>/../shared/lib/esm/module-proxy.js',
},
testSequencer: './ui-test-sequencer.js',
};
export default config;