contract testing

This commit is contained in:
2025-12-24 00:01:01 +01:00
parent 43a8afe7a9
commit 5e491d9724
52 changed files with 2058 additions and 612 deletions

18
vitest.scripts.config.ts Normal file
View File

@@ -0,0 +1,18 @@
import { defineConfig } from 'vitest/config';
import { resolve } from 'node:path';
export default defineConfig({
test: {
globals: true,
watch: false,
environment: 'node',
include: ['scripts/test/**/*.test.ts'],
exclude: ['node_modules/**', 'dist/**'],
},
resolve: {
alias: {
'@': resolve(__dirname, './apps/website'),
'@core': resolve(__dirname, './core'),
},
},
});