mirror of
https://github.com/zenstackhq/zenstack
synced 2026-05-24 10:08:55 +00:00
* 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
11 lines
257 B
TypeScript
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'],
|
|
},
|
|
}),
|
|
);
|