mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
baef49df3c
* chore: bump dependencies * fix: ui test * fix: ui test
13 lines
411 B
JavaScript
13 lines
411 B
JavaScript
/** @type {import('jest').Config} */
|
|
const config = {
|
|
transform: {},
|
|
preset: 'jest-puppeteer',
|
|
setupFilesAfterEnv: ['jest-matcher-specific-error', 'expect-puppeteer', './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;
|