aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/reportError.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/reportError.test.js')
-rw-r--r--integration/bunjs-only-snippets/reportError.test.js5
1 files changed, 5 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/reportError.test.js b/integration/bunjs-only-snippets/reportError.test.js
new file mode 100644
index 000000000..ed25bd743
--- /dev/null
+++ b/integration/bunjs-only-snippets/reportError.test.js
@@ -0,0 +1,5 @@
+import { it } from "bun:test";
+
+it("reportError", () => {
+ reportError(new Error("reportError Test!"));
+});