Files
slash-command-dispatch/jest.config.js
2020-07-22 14:38:50 +09:00

15 lines
340 B
JavaScript

module.exports = {
clearMocks: true,
moduleFileExtensions: ['js', 'ts'],
testEnvironment: 'node',
testMatch: ['**/*.test.ts'],
testRunner: 'jest-circus/runner',
transform: {
'^.+\\.ts$': 'ts-jest'
},
verbose: true
}
process.env = Object.assign(process.env, {
GITHUB_REPOSITORY: "peter-evans/slash-command-dispatch"
})