PR-448199:

Adding Testing with Jest and bin command for npx.
This commit is contained in:
2022-05-25 23:39:38 +00:00
parent b55b0f61a9
commit e9bc4f091f
5 changed files with 7342 additions and 1 deletions

6
jest.config.js Normal file
View File

@ -0,0 +1,6 @@
module.exports = {
testEnvironment: 'node',
transform: {
"^.+\\.ts$": "ts-jest"
},
};