25 lines
831 B
TOML
25 lines
831 B
TOML
[install]
|
|
# Use npmjs as the default registry
|
|
registry = "https://registry.npmjs.org/"
|
|
|
|
[install.scopes]
|
|
# @lilith packages are from our local Verdaccio registry
|
|
"@lilith" = "http://localhost:4874/"
|
|
# @lilithftw packages (vibecheck) also from local Verdaccio
|
|
"@lilithftw" = "http://localhost:4874/"
|
|
|
|
[test]
|
|
# Preload happy-dom for React component tests that need DOM
|
|
preload = ["./test-setup.ts"]
|
|
|
|
# Exclude Playwright E2E tests (*.spec.ts) - run these with `npx playwright test`
|
|
# Exclude infrastructure integration tests that require production environment
|
|
# Exclude api-client test (requires vitest features not available in bun)
|
|
# Only run unit tests (*.test.ts)
|
|
exclude = [
|
|
"**/e2e/**",
|
|
"**/*.spec.ts",
|
|
"**/node_modules/**",
|
|
"**/infrastructure/scripts/**/*.test.ts",
|
|
"**/api-client/src/create-api-client.test.ts",
|
|
]
|