Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion test/stack.test.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -460,7 +460,7 @@ test("decide and act reject mistyped remaining payload fields", () => {
});

test("README pass-path sample matches printHuman field order", async () => {
const readme = readFileSync(join(ROOT, "README.md"), "utf8");
const readme = readFileSync(join(ROOT, "README.md"), "utf8").replaceAll("\r\n", "\n");
const match = readme.match(/Expected human output \(pass path, no fault\):\n\n```text\n([\s\S]*?)```/);
assert.ok(match, "README is missing the pass-path human output sample");
const outputRoot = tempRoot();
Expand Down
Loading