| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import { config } from "dotenv";
- import path from 'path';
- import { defineConfig } from 'vitest/config';
- export default defineConfig({
- build: {
- commonjsOptions: {
- transformMixedEsModules: true,
- },
- },
- resolve: {
- alias: [
- {find: "@application", replacement: path.resolve(__dirname, './src/application') },
- {find: "@workflow", replacement: path.resolve(__dirname, './src/domain') },
- {find: "@infra", replacement: path.resolve(__dirname, './src/infrastructure') },
- {find: "@nodes", replacement: path.resolve(__dirname, './src/nodes') },
- ],
- },
- test: {
- globals: true,
- mockReset: false,
- environment: 'jsdom',
- testTimeout: 15000,
- setupFiles: [path.resolve(__dirname, './src/domain/__tests__/setup.ts')],
- include: ['**/?(*.){test,spec}.?(c|m)[jt]s?(x)'],
- exclude: [
- '**/__mocks__**',
- '**/node_modules/**',
- '**/dist/**',
- '**/lib/**', // lib 编译结果忽略掉
- '**/cypress/**',
- '**/.{idea,git,cache,output,temp}/**',
- '**/{karma,rollup,webpack,vite,vitest,jest,ava,babel,nyc,cypress,tsup,build}.config.*',
- ],
- env: {
- ...config({ path: path.resolve(__dirname, './.env/.env.test') }).parsed
- }
- },
- });
|