zenstack/tests/regression/vitest.config.ts
Yiming Cao 411524404e
refactor: move e2e orm tests to e2e project, fix bundle issues (#285)
* refactor: move e2e orm tests to e2e project, fix bundle issues

* add missing package

* include all tests

* more fixes

* update lockfile

* extract policy plugin to its own package

* fix lint

* addressing review comments
2025-10-03 21:06:19 -07:00

11 lines
257 B
TypeScript

import base from '@zenstackhq/vitest-config/base';
import { defineConfig, mergeConfig } from 'vitest/config';
export default mergeConfig(
base,
defineConfig({
test: {
setupFiles: ['@zenstackhq/testtools'],
},
}),
);