* test: add web helpers tests * fix: coverage report * test: add more tests * test: add more generated tests * chore: add more tests * test: add more tests
10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
collectCoverageFrom: ['src/**/*.{ts,tsx}'],
|
|
moduleNameMapper: {
|
|
'@/(.*)': '<rootDir>/src/$1',
|
|
},
|
|
runner: './testRunner.js',
|
|
}
|