test: move missing file refs from task.files to task.inputs per #3626 fix

This commit is contained in:
Tibsfox 2026-04-06 23:01:34 -07:00
parent 9479fe07bd
commit 6fa3a6ac94
2 changed files with 4 additions and 4 deletions

View file

@ -225,9 +225,9 @@ describe("Pre-execution fail-closed behavior", () => {
planning: {
description: "References missing file",
estimate: "1h",
files: ["nonexistent-file.ts"],
files: [],
verify: "npm test",
inputs: [],
inputs: ["nonexistent-file.ts"],
expectedOutput: [],
observabilityImpact: "",
},

View file

@ -189,9 +189,9 @@ function createFailingTasks(): void {
planning: {
description: "This task references a non-existent file",
estimate: "1h",
files: ["nonexistent-file-that-does-not-exist.ts"],
files: [],
verify: "npm test",
inputs: [],
inputs: ["nonexistent-file-that-does-not-exist.ts"],
expectedOutput: [],
observabilityImpact: "",
},