mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 01:55:30 +00:00
9 lines
230 B
JavaScript
9 lines
230 B
JavaScript
/** @type {import('ts-jest').JestConfigWithTsJest} */
|
|
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^\~/(.+)$': '<rootDir>/src/$1'
|
|
},
|
|
testMatch: ['**/src/**/*.(spec|test).ts']
|
|
}; |