setup-node/jest.config.js
Bryan MacFarlane 3b7fa72b60 Add installer
* start

* Add tests

* Clean up changes

* Update tool-cache we consume

* Use custom 7zr
2019-06-05 15:17:00 -04:00

11 lines
235 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}