mirror of
https://github.com/chenasraf/search-ast-parser-js.git
synced 2026-05-17 17:48:09 +00:00
13 lines
300 B
JavaScript
13 lines
300 B
JavaScript
/** @type {import('ts-jest/dist/types').InitialOptionsTsJest} */
|
|
module.exports = {
|
|
verbose: true,
|
|
preset: 'ts-jest',
|
|
testEnvironment: 'node',
|
|
collectCoverage: true,
|
|
testMatch: [
|
|
'**/tests/**/*.[jt]s?(x)',
|
|
'**/__tests__/**/*.[jt]s?(x)',
|
|
'**/?(*.)+(spec|test).[tj]s?(x)',
|
|
],
|
|
}
|