-
-
Notifications
You must be signed in to change notification settings - Fork 2
test: merged Covencat repair probe #79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
98f1290
93a0000
821f867
5770210
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,8 @@ | ||
| // Retrigger against the merged publisher normalization fix. | ||
| // Retrigger after remounting the temporary repair policy. | ||
| export function describeMergedProbe(value) { | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. high: Unterminated function/object literal leaves the module syntactically invalid - The file ends after Unterminated function/object literal leaves the module syntactically invalid - The file ends after Suggested resolution: close the object and function body, or restore the missing lines from the intended probe implementation. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. high: Truncated function leaves the module syntactically invalid - The file ends inside Truncated function leaves the module syntactically invalid - The file ends inside Suggested resolution: restore the missing closing braces and ensure the exported function returns a complete object. |
||
| return { | ||
| value, | ||
| status: "broken", | ||
| }; | ||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
high: Incomplete module causes syntax failure - The file ends mid-object (
return { value, status: "broken",) with no closing braces or export completion, sonode --checkfails immediatelyIncomplete module causes syntax failure - The file ends mid-object (
return { value, status: "broken",) with no closing braces or export completion, sonode --checkfails immediately. This blocks any consumer from importing the probe and prevents the reviewed commit from passing basic syntax validation.Suggested resolution: finish the function body and close the module, or remove the broken probe until it is complete and testable.