Files
prompt-optimizer/scripts/e2e-groups.js

32 lines
1.2 KiB
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const groups = {
gate: [
'tests/e2e/workflows/p0-route-smoke.spec.ts',
'tests/e2e/regression/root-route-bootstrap.spec.ts',
'tests/e2e/optimize/basic-user.spec.ts',
'tests/e2e/test/image-text2image-generate.spec.ts',
// 单图生图与多图持久化目前仍依赖较脆弱的 provider/VCR 契约,
// 先降级到 extended避免把日常 gate 绑死在高维护成本用例上。
],
extended: [
'tests/e2e/analysis/basic-system.spec.ts',
'tests/e2e/analysis/basic-user.spec.ts',
'tests/e2e/analysis/image-text2image.spec.ts',
'tests/e2e/analysis/image-image2image.spec.ts',
'tests/e2e/analysis/pro-multi.spec.ts',
'tests/e2e/analysis/pro-variable.spec.ts',
'tests/e2e/optimize/basic-system.spec.ts',
'tests/e2e/test/image-image2image-generate.spec.ts',
'tests/e2e/session-persistence/image-multiimage-persistence.spec.ts',
'tests/e2e/optimize/pro-multi.spec.ts',
'tests/e2e/optimize/pro-variable.spec.ts',
'tests/e2e/test/basic-system-compare-test.spec.ts',
'tests/e2e/test/basic-user-test.spec.ts',
'tests/e2e/test/pro-multi-test.spec.ts',
'tests/e2e/test/pro-variable-test.spec.ts'
]
}
module.exports = {
groups
}