Files
claude-code-viewer/vitest.config.ts
d-kimsuon a77d7e205b refactor: update testing layers and configurations
- Changed the setup file path in vitest configuration for better organization.
- Refactored the EventBus implementation to streamline event handling.
- Updated various test files to utilize new testing layers for improved clarity and maintainability.
- Introduced new utility layers for file system and persistent service mocks to enhance test reliability.
- Enhanced the platform layer to include necessary services for testing environments.
2025-10-18 20:07:47 +09:00

14 lines
240 B
TypeScript

import { defineConfig } from "vitest/config";
const config = defineConfig({
test: {
globals: true,
setupFiles: ["src/testing/setup/vitest.setup.ts"],
env: {
ENVIRONMENT: "local",
},
},
});
export default config;