We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de6ba2 commit ac8832aCopy full SHA for ac8832a
README.md
@@ -48,10 +48,10 @@
48
bun dev
49
```
50
51
-5. **Run the tests**
+5. **Run the API tests**
52
53
```sh
54
- APIURL=http://localhost:3000/api ./scripts/api-tests/run-api-tests.sh
+ bun run test # not `bun test`!
55
56
57
### Building for production
package.json
@@ -10,6 +10,7 @@
10
"dev": "bun run --watch src/main.ts",
11
"build": "./scripts/build.sh",
12
"preview": "./server",
13
+ "test": "APIURL=http://localhost:3000/api ./scripts/api-tests/run-api-tests.sh",
14
"fix": "biome check --fix",
15
"check": "biome check",
16
"check:errors": "biome check --diagnostic-level=error",
0 commit comments