aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/README.md61
1 files changed, 34 insertions, 27 deletions
diff --git a/test/README.md b/test/README.md
index 292d23cf2..274b19fbf 100644
--- a/test/README.md
+++ b/test/README.md
@@ -2,13 +2,46 @@
Bun currently has four different kinds of tests
-To run the tests:
+To run all the tests:
```bash
make test-all
+bun --cwd=test/bun.js wiptest
+```
+
+### Runtime tests
+
+To run the runtime tests:
+
+```bash
+cd test/bun.js
bun wiptest
```
+These tests are in [./bun.js](./bun.js) and are files with `.test.js` or `.test.ts` in the filename.
+
+These test that the runtime behaves as expected. These also test the transpiler, both because test files are transpiled and directly by running the transpiler via `Bun.Transpiler`.
+
+#### Adding a new test
+
+1. Create a new file in [./bun.js](./bun.js/) with `.test` in the name.
+
+These test use `bun:test` as the import (though you can also import from `vitest` or jest and it will work).
+
+This will eventually be a public test runner for bun, but the reporter isn't very good yet and it doesn't run in parallel.
+
+The syntax intends for Jest compatibility.
+
+```ts
+import { describe, expect, it } from "bun:test";
+
+describe("Example", () => {
+ it("should work", () => {
+ expect(1).toBe(1);
+ });
+});
+```
+
### Browser tests
Browser tests run end-to-end inside of Puppeteer and execute code transpiled by `bun dev`. These tests are in [./snippets](./snippets).
@@ -68,32 +101,6 @@ make integration-test-dev
These were the first tests bun started with
-### Runtime tests
-
-These tests are in [./bun.js](./bun.js) and are files which are either `.test.js` or `.test.ts` files.
-
-These test that the runtime behaves as expected. These also test the transpiler, both because test files are transpiled and directly by running the transpiler via `Bun.Transpiler`.
-
-#### Adding a new test
-
-1. Create a new file in [./bun.js](./bun.js/) with `.test` in the name.
-
-These test use `bun:test` as the import (though you can also import from `vitest` or jest and it will work).
-
-This will eventually be a public test runner for bun, but the reporter isn't very good yet and it doesn't run in parallel.
-
-The syntax intends for Jest compatibility.
-
-```ts
-import { describe, expect, it } from "bun:test";
-
-describe("Example", () => {
- it("should work", () => {
- expect(1).toBe(1);
- });
-});
-```
-
#### Running the tests
Run `bun wiptest ${part-of-file-name}`