Files
warp/jest.config.js

21 lines
404 B
JavaScript

module.exports = {
// Automatically clear mock calls and instances between every test
clearMocks: true,
testTimeout: 30000,
moduleFileExtensions: ['ts', 'js'],
testPathIgnorePatterns: ['/.yalc/', '/data/', '/_helpers'],
testEnvironment: 'node',
moduleNameMapper: {
'^warp-contracts$': '<rootDir>/lib/cjs'
},
transform: {
'^.+\\.(ts|js)$': 'ts-jest'
},
silent: false
};