aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/html-rewriter.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'integration/bunjs-only-snippets/html-rewriter.test.js')
-rw-r--r--integration/bunjs-only-snippets/html-rewriter.test.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/integration/bunjs-only-snippets/html-rewriter.test.js b/integration/bunjs-only-snippets/html-rewriter.test.js
new file mode 100644
index 000000000..cd4fad746
--- /dev/null
+++ b/integration/bunjs-only-snippets/html-rewriter.test.js
@@ -0,0 +1,8 @@
+import { describe, it, expect } from "bun:test";
+
+describe("HTMLRewriter", () => {
+ it("exists globally", () => {
+ expect(typeof HTMLRewriter).toBe("function");
+ console.log(HTMLRewriter.name);
+ });
+});