Add initial action setup

This commit is contained in:
Jonathan Clem
2022-01-31 14:09:42 -05:00
commit 078fd9f744
24 changed files with 28122 additions and 0 deletions

9
jest.config.js Normal file
View File

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