Skip to content

kumiko test

Terminal window
kumiko test [scope]

bun:test + Playwright runner with scope shortcuts.

ScopeWhat it runs
(none)All unit tests (bun test)
testSame as no-scope (alias)
integrationIntegration tests (Docker + DATABASE_URL required)
e2ePlaywright for every package/sample with a playwright.config.ts
allUnit + integration (guards before integration)
<path>Filtered run (e.g. samples/recipes/user-invite/)
Terminal window
kumiko test # unit tests only
kumiko test all # unit + integration
kumiko test integration # just integration (docker needed)
kumiko test samples/recipes/foo/ # path-filtered run
kumiko test e2e # all Playwright suites discovered

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.