48eb3d5007
Project CI / AI game creator shell Rust crates (push) Successful in 2m22s
Project CI / AI game creator shell Rust smoke (push) Successful in 3m13s
Project CI / AI game creator shell Rust lane 2/2 (push) Successful in 8m28s
Project CI / AI game creator shell Rust lane 1/2 (push) Successful in 8m58s
Project CI / Backend tests (push) Successful in 7m16s
Project CI / Native shell tests (push) Successful in 8m10s
Project CI / Frontend tests (push) Successful in 3m49s
Project CI / Repository checks (push) Successful in 4m8s
Project CI / AI game creator shell web tests (push) Successful in 4m1s
Reviewed-on: https://git.genarrative.world/git/GenarrativeAI/Genarrative/pulls/456 Co-authored-by: Linghong <ink29535@proton.me> Co-committed-by: Linghong <ink29535@proton.me>
11 lines
283 B
TypeScript
11 lines
283 B
TypeScript
import { mergeConfig } from 'vitest/config';
|
|
|
|
import config from './vitest.config';
|
|
|
|
// AGC 前端测试由专属 CI job 执行;本地全量入口继续使用根配置。
|
|
export default mergeConfig(config, {
|
|
test: {
|
|
exclude: ['apps/ai-game-creator-shell/tests/**'],
|
|
},
|
|
});
|