kumiko test
kumiko test [scope]bun:test + Playwright runner with scope shortcuts.
Scopes
Section titled “Scopes”| Scope | What it runs |
|---|---|
| (none) | All unit tests (bun test) |
test | Same as no-scope (alias) |
integration | Integration tests (Docker + DATABASE_URL required) |
e2e | Playwright for every package/sample with a playwright.config.ts |
all | Unit + integration (guards before integration) |
<path> | Filtered run (e.g. samples/recipes/user-invite/) |
Examples
Section titled “Examples”kumiko test # unit tests onlykumiko test all # unit + integrationkumiko test integration # just integration (docker needed)kumiko test samples/recipes/foo/ # path-filtered runkumiko test e2e # all Playwright suites discoveredDiscovery for e2e
Section titled “Discovery for e2e”kumiko test e2e enumerates packages/, samples/apps/, and
samples/showcases/ and runs Playwright in every subdir that has a
playwright.config.ts. There is no single root config — each suite
owns its config.
See also
Section titled “See also”kumiko check— runs tests + Biome + TS + guardskumiko clean-test-dbs— drop test DBs left behind by SIGKILLed runs