mirror of
https://github.com/selfxyz/self.git
synced 2026-01-09 06:38:09 -05:00
* moves validateDocument functions into the common package. * fix build issues and lint * handle bad connections better in nullifiier * add an abort controler to nullifer fetcher, ignore fals positives * import types separately * take it as an arg
11 lines
209 B
TypeScript
11 lines
209 B
TypeScript
import { defineConfig } from 'vitest/config';
|
|
|
|
export default defineConfig({
|
|
test: {
|
|
globals: true,
|
|
environment: 'node',
|
|
include: ['**/*.test.ts'],
|
|
setupFiles: ['./tests/setup.ts'],
|
|
},
|
|
});
|