Files
stacks-blockchain-api/jest.config.rosetta-cli-construction.js

16 lines
650 B
JavaScript

module.exports = {
preset: 'ts-jest',
rootDir: 'src',
testMatch: ['<rootDir>/tests-rosetta-cli-construction/**/*.ts'],
testPathIgnorePatterns: ['<rootDir>/tests-rosetta-cli-construction/setup.ts', '<rootDir>/tests-rosetta-cli-construction/teardown.ts'],
collectCoverageFrom: ['<rootDir>/**/*.ts'],
coveragePathIgnorePatterns: ['<rootDir>/tests*'],
coverageDirectory: '../coverage',
globalSetup: '<rootDir>/tests-rosetta-cli-construction/setup.ts',
globalTeardown: '<rootDir>/tests-rosetta-cli-construction/teardown.ts',
testTimeout: 180000,
transformIgnorePatterns: [
"node_modules/(?!(@stacks/stacks-transactions)/)"
]
}