test: move missing file refs from task.files to task.inputs per #3626 fix
This commit is contained in:
parent
9479fe07bd
commit
6fa3a6ac94
2 changed files with 4 additions and 4 deletions
|
|
@ -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: "",
|
||||
},
|
||||
|
|
|
|||
|
|
@ -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: "",
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue