1
0
mirror of https://github.com/benjlevesque/short-sha.git synced 2026-03-08 21:34:51 +01:00

Initial commit

This commit is contained in:
Benjamin LEVESQUE
2020-03-09 19:02:59 +01:00
commit 6e8dcce3fd
17 changed files with 7306 additions and 0 deletions

11
jest.config.js Normal file
View File

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