1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# Tests
## Finding tests
Tests are located in the [`test/`](test/) directory and are organized using the following structure:
* `test/`
* `js/` - tests for JavaScript APIs.
* `cli/` - tests for commands, configs, and stdout.
* `bundler/` - tests for the transpiler/bundler.
* `regression/` - tests that reproduce a specific issue.
* `harness.ts` - utility functions that can be imported from any test.
The tests in [`test/js/`](test/js/) directory are further categorized by the type of API.
* `test/js/`
* `bun/` - tests for `Bun`-specific APIs.
* `node/` - tests for Node.js APIs.
* `web/` - tests for Web APIs, like `fetch()`.
* `first_party/` - tests for npm packages that are built-in, like `undici`.
* `third_party/` - tests for npm packages that are not built-in, but are popular, like `esbuild`.
## Running tests
To run a test, use Bun's built-in test command: `bun test`.
```sh
bun test # Run all tests
bun test js/bun # Only run tests in a directory
bun test sqlite.test.ts # Only run a specific test
```
If you encounter lots of errors, try running `bun install`, then trying again.
## Writing tests
Tests are written in TypeScript (preferred) or JavaScript using Jest's `describe()`, `test()`, and `expect()` APIs.
```ts
import { describe, test, expect } from "bun:test";
import { gcTick } from "harness";
describe("TextEncoder", () => {
test("can encode a string", async () => {
const encoder = new TextEncoder();
const actual = encoder.encode("bun");
await gcTick();
expect(actual).toBe(new Uint8Array([0x62, 0x75, 0x6E]));
});
});
```
If you are fixing a bug that was reported from a GitHub issue, remember to add a test in the `test/regression/` directory.
```ts
// test/regression/issue/02005.test.ts
import { it, expect } from "bun:test";
it("regex literal should work with non-latin1", () => {
const text = "这是一段要替换的文字";
expect(text.replace(new RegExp("要替换"), "")).toBe("这是一段的文字");
expect(text.replace(/要替换/, "")).toBe("这是一段的文字");
});
```
In the future, a bot will automatically close or re-open issues when a regression is detected or resolved.
## Zig tests
These tests live in various `.zig` files throughout Bun's codebase, leveraging Zig's builtin `test` keyword.
Currently, they're not run automatically nor is there a simple way to run all of them. We will make this better soon.
## TypeScript
Test files should be written in TypeScript. The types in `packages/bun-types` should be updated to support all new APIs. Changes to the `.d.ts` files in `packages/bun-types` will be immediately reflected in test files; no build step is necessary.
Writing a test will often require using invalid syntax, e.g. when checking for errors when an invalid input is passed to a function. TypeScript provides a number of escape hatches here.
- `// @ts-expect-error` - This should be your first choice. It tells TypeScript that the next line *should* fail typechecking.
- `// @ts-ignore` - Ignore the next line entirely.
- `// @ts-nocheck` - Put this at the top of the file to disable typechecking on the entire file. Useful for autogenerated test files, or when ignoring/disabling type checks an a per-line basis is too onerous.
|