Add test suite, cover existing functions
This commit is contained in:
11
vitest.config.ts
Normal file
11
vitest.config.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { defineConfig } from 'vitest/config';
|
||||
|
||||
export default defineConfig({
|
||||
test: {
|
||||
environment: 'node', // Using node environment as we are testing logic not browser specifics
|
||||
include: ['test/**/*.test.ts'],
|
||||
deps: {
|
||||
interopDefault: true,
|
||||
},
|
||||
},
|
||||
});
|
||||
Reference in New Issue
Block a user