mirror of
https://github.com/zkopru-network/zkopru.git
synced 2026-01-15 01:08:07 -05:00
13 lines
370 B
JavaScript
13 lines
370 B
JavaScript
module.exports = {
|
|
roots: ['<rootDir>/src', '<rootDir>/tests'],
|
|
transform: {
|
|
'^.+\\.ts$': 'ts-jest',
|
|
},
|
|
testRegex: '(/tests/.*.(test|spec)).(jsx?|tsx?)$',
|
|
moduleFileExtensions: ['ts', 'tsx', 'js', 'jsx', 'json', 'node'],
|
|
collectCoverage: true,
|
|
coveragePathIgnorePatterns: ['(tests/.*.mock).(jsx?|tsx?)$'],
|
|
verbose: true,
|
|
testEnvironment: 'node',
|
|
}
|