removed jest

This commit is contained in:
Bojan Kucera 2025-06-04 12:48:09 -04:00
parent fb22815450
commit 68592619f9
7 changed files with 242 additions and 203 deletions

20
bunfig.toml Normal file
View file

@ -0,0 +1,20 @@
# Root bunfig.toml for Stock Bot Trading Platform
# Configures Bun for the entire monorepo workspace
[test]
# Configure coverage and test behavior
coverage = true
timeout = "30s"
# Configure test environment
preload = ["./test/setup.ts"]
# Environment variables for tests
[test.env]
NODE_ENV = "test"
# Module path resolution
[bun]
paths = {
"@stock-bot/*" = ["./libs/*/src"]
}