6295c476dc
- Replace TestDepth ('quick'|'standard'|'thorough') with explicit runs:number
- Remove GenerationProfile type and all generationProfile parameters
- schema-to-arbitrary.ts now uses fixed defaults (string≤128, array≤10, props≤6)
- Delete src/cli/core/generation-profile.ts
- Remove --generation-profile CLI flag from verify and qualify
- Remove depth field from PresetDefinition and all preset scaffolds
- Remove generationProfiles from Config interface
- Update all test files: depth:'quick' → runs:10
- Remove depth from all fixture configs
- Update builders.ts, mutation.ts, outbound-mock-runtime.ts
- Build: clean | Tests: 849 pass, 0 fail
35 lines
657 B
JavaScript
35 lines
657 B
JavaScript
/**
|
|
* APOPHIS configuration for observe-config fixture.
|
|
*/
|
|
export default {
|
|
mode: "observe",
|
|
profiles: {
|
|
"staging-observe": {
|
|
name: "staging-observe",
|
|
mode: "observe",
|
|
preset: "observe-safe",
|
|
routes: ["/health", "/events"],
|
|
},
|
|
},
|
|
presets: {
|
|
"observe-safe": {
|
|
name: "observe-safe",
|
|
timeout: 5000,
|
|
parallel: false,
|
|
chaos: false,
|
|
observe: true,
|
|
},
|
|
},
|
|
environments: {
|
|
staging: {
|
|
name: "staging",
|
|
allowVerify: true,
|
|
allowObserve: true,
|
|
allowQualify: false,
|
|
allowChaos: false,
|
|
allowBlocking: false,
|
|
requireSink: true,
|
|
},
|
|
},
|
|
};
|