mirror of
https://github.com/alexgo-io/stacks-blockchain-api.git
synced 2026-04-29 13:25:34 +08:00
13 lines
437 B
JavaScript
13 lines
437 B
JavaScript
module.exports = {
|
|
preset: 'ts-jest',
|
|
rootDir: 'src',
|
|
testMatch: ['<rootDir>/tests/**/*.ts'],
|
|
testPathIgnorePatterns: ['<rootDir>/tests/setup.ts', '<rootDir>/tests/teardown.ts'],
|
|
collectCoverageFrom: ['<rootDir>/**/*.ts'],
|
|
coveragePathIgnorePatterns: ['<rootDir>/tests*'],
|
|
coverageDirectory: '../coverage',
|
|
globalSetup: '<rootDir>/tests/setup.ts',
|
|
globalTeardown: '<rootDir>/tests/teardown.ts',
|
|
testTimeout: 20000,
|
|
}
|