aboutsummaryrefslogtreecommitdiff
path: root/integration/bunjs-only-snippets/html-rewriter.test.js
blob: cd4fad7469b3a5bfbc7619722ebae204acfcb607 (plain) (blame)
1
2
3
4
5
6
7
8
import { describe, it, expect } from "bun:test";

describe("HTMLRewriter", () => {
  it("exists globally", () => {
    expect(typeof HTMLRewriter).toBe("function");
    console.log(HTMLRewriter.name);
  });
});