blob: a9da929eb3e1c4d63f3014e210cfea6a969d5f48 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
import { describe, test, expect } from "bun:test";
describe("example", () => {
test("it works", () => {
expect(1).toBe(1);
expect(1).not.toBe(2);
expect(() => {
throw new Error("error");
}).toThrow();
});
});
|