Add tests

This commit is contained in:
Danny McCormick 2019-06-04 16:00:18 -04:00
parent eac926003b
commit 48c62836f2
8 changed files with 5250 additions and 54 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
}