Files
apophis-fastify/src/cli/__fixtures__/observe-config/apophis.config.js
T
John Dvorak 6295c476dc refactor: remove depth/generationProfile tiering, use explicit runs
- 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
2026-04-30 13:47:24 -07:00

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,
},
},
};