diff options
Diffstat (limited to 'integration/bunjs-only-snippets/reportError.test.js')
-rw-r--r-- | integration/bunjs-only-snippets/reportError.test.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/integration/bunjs-only-snippets/reportError.test.js b/integration/bunjs-only-snippets/reportError.test.js index 6ba202b7f..e51f93309 100644 --- a/integration/bunjs-only-snippets/reportError.test.js +++ b/integration/bunjs-only-snippets/reportError.test.js @@ -1,7 +1,7 @@ import { it } from "bun:test"; it("reportError", () => { - console.error("---BEGIN REPORT ERROR TEST--"); + console.log("---BEGIN REPORT ERROR TEST--"); // make sure we don't crash when given non-sensical types reportError(new Error("reportError Test!")); reportError(true); @@ -21,5 +21,5 @@ it("reportError", () => { reportError([123, null]); reportError({}); reportError([{}]); - console.error("---END REPORT ERROR TEST--"); + console.log("---END REPORT ERROR TEST--"); }); |