ef005ef0b2
And a bonus health endpoint to make the simplest test possible
10 lines
298 B
JavaScript
10 lines
298 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
setupFiles: ["<rootDir>/test/setup-tests.ts"],
|
|
moduleNameMapper: {
|
|
"@lib/(.*)": "<rootDir>/src/lib/$1",
|
|
"@routes/(.*)": "<rootDir>/src/routes/$1"
|
|
},
|
|
};
|