15 lines
254 B
TOML
15 lines
254 B
TOML
[test]
|
|
# Configure path mapping for tests
|
|
preload = ["./test/setup.ts"]
|
|
|
|
# Test configuration
|
|
timeout = 5000
|
|
|
|
# Set test environment
|
|
env = { NODE_ENV = "test" }
|
|
|
|
[bun]
|
|
# Enable TypeScript paths resolution
|
|
paths = {
|
|
"@/*" = ["./src/*"]
|
|
}
|