mirror of
https://github.com/NativeScript/NativeScript.git
synced 2025-08-15 02:54:11 +08:00
11 lines
187 B
JavaScript
11 lines
187 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
moduleNameMapper: {
|
|
'^@nativescript/webpack$': '<rootDir>/src'
|
|
},
|
|
setupFiles: [
|
|
'<rootDir>/jest.setup.ts'
|
|
]
|
|
};
|