Port to vitest. Port everything to typescript. Remove chai, mocha and
chai-as-promised. Adds some docs.
This commit is contained in:
Matt Godbolt
2024-03-08 22:25:09 -06:00
committed by GitHub
parent 45b743e22b
commit fd3dd917f5
82 changed files with 4212 additions and 3862 deletions

11
vitest.config.ts Normal file
View File

@@ -0,0 +1,11 @@
// eslint-disable-next-line node/no-unpublished-import
import {defineConfig} from 'vitest/config';
// eslint-disable-next-line import/no-default-export
export default defineConfig({
test: {
include: ['test/**/*.ts'],
exclude: ['test/_*.ts', 'test/utils.ts'],
setupFiles: ['/test/_setup-fake-aws.ts', '/test/_setup-log.ts'],
},
});