Skip to content

Commit

Permalink
fix(debugger): debug message output to stdout no longer stderr
Browse files Browse the repository at this point in the history
  • Loading branch information
homura committed Jan 11, 2024
1 parent e0ea48e commit a5b6a08
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/debugger/tests/context.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ test("context#CKBDebugger with printf debug message", async (t) => {
scriptHash: computeScriptHash(debugScript),
});

t.regex(result.debugMessage, /debugger print utf-8 string/);
t.regex(result.message, /debugger print utf-8 string/);
t.is(result.code, 0);
});

Expand Down

0 comments on commit a5b6a08

Please sign in to comment.