feat: setup jest

This commit is contained in:
Joe Previte
2021-01-08 20:55:47 +00:00
parent c52198f30d
commit cef7d42652
8 changed files with 1918 additions and 186 deletions

5
jest.config.js Normal file
View File

@ -0,0 +1,5 @@
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
testPathIgnorePatterns: ["/node_modules/", "lib/vscode/"]
};