summaryrefslogtreecommitdiff
path: root/tests/specs/test/test_with_custom_jsx/main.ts
blob: 4a1c3463facea822c5c759875c3762043b2ce66a (plain)
1
2
3
4
5
6
7
8
9
Deno.test({
  name: "hello world test",
  fn(): void {
    const world = "world";
    if ("world" !== world) {
      throw new Error("world !== world");
    }
  },
});