feat: bump minimum node version to 16 and add tests (#86)

* build: add tests

* build: bump deps

* sigh

* build: install rosetta on m1
This commit is contained in:
Samuel Attard
2023-11-09 10:56:22 -08:00
committed by GitHub
parent 02119d5a83
commit 8e2842b4a3
18 changed files with 3649 additions and 1490 deletions

14
jest.config.js Normal file
View File

@@ -0,0 +1,14 @@
/** @type {import('ts-jest').JestConfigWithTsJest} */
module.exports = {
preset: 'ts-jest',
testEnvironment: 'node',
transform: {
'.': [
'ts-jest',
{
tsconfig: 'tsconfig.jest.json'
}
]
},
globalSetup: './jest.setup.ts'
};