summaryrefslogtreecommitdiff
path: root/tests/testdata/inspector/inspector_test.js
blob: e1ac7b6359f34b2b1cb52f869362922bad70603f (plain)
1
2
3
4
5
6
Deno.test("basic test", () => {
  const value = 1 + 1;
  if (value !== 2) {
    throw new Error("failed");
  }
});