mirror of
https://github.com/valitydev/checkout.git
synced 2024-11-06 02:25:18 +00:00
9 lines
227 B
JavaScript
9 lines
227 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'jest-environment-jsdom',
|
|
moduleNameMapper: {
|
|
'^checkout/(.*)': '<rootDir>/src/app/$1',
|
|
},
|
|
};
|