Skip to content

Commit 6844d33

Browse files
chore: split unit and integration tests for CI
- Rename integration tests to *.spec.ts (excluded from CI) - `bun run test` runs only *.test.ts (unit tests for CI) - `bun run test:integration` runs *.spec.ts (live API tests) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 13578aa commit 6844d33

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
"build": "tsup",
1717
"lint": "biome check .",
1818
"format": "biome format . --write",
19-
"test": "bun test tests/",
20-
"test:integration": "bun run integration_test.ts",
19+
"test": "bun test tests/*.test.ts",
20+
"test:integration": "bun test tests/*.spec.ts",
2121
"check": "tsc --noEmit && biome check .",
2222
"prepublishOnly": "tsup"
2323
},

0 commit comments

Comments
 (0)