Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions packages/agent/bunfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
# Exclude e2e tests from coverage as they require real LLM API
coverageSkipTestFiles = true
coveragePathIgnorePatterns = ["src/e2e/**", "../storage/**"]

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/agent/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:unit": "bun test src/core src/context src/heartbeat src/tools",
"test:e2e": "bun test src/e2e/",
"test:coverage": "bun test --coverage",
"lint": "biome check src",
"lint": "biome check src --error-on-warnings",
"format": "biome format src --write"
},
"dependencies": {
Expand Down
4 changes: 4 additions & 0 deletions packages/discord/bunfig.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,7 @@
# Exclude e2e utilities from coverage as they are tested via behavioral tests
coverageSkipTestFiles = true
coveragePathIgnorePatterns = ["src/e2e/**"]

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/discord/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
"test:unit": "bun test src/",
"test:e2e": "bun run src/e2e/runner.ts --core",
"test:e2e:full": "bun run src/e2e/runner.ts",
"lint": "biome lint src",
"lint": "biome lint src --error-on-warnings",
"format": "biome format src"
},
"dependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/gateway/bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
[test]
coverageSkipTestFiles = true
coveragePathIgnorePatterns = ["src/e2e/**", "../agent/**", "../discord/**", "../http/**", "../terminal/**", "../storage/**"]

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/gateway/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"test:behavioral:memory": "bun run behavioral-tests/memory.test.ts",
"test:behavioral:autonomy": "bun run behavioral-tests/agent-autonomy.test.ts",
"test:behavioral:skills": "bun run behavioral-tests/skills.test.ts",
"lint": "biome lint src behavioral-tests",
"lint": "biome lint src behavioral-tests --error-on-warnings",
"format": "biome format src behavioral-tests"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/http/bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[test]
coverageSkipTestFiles = true

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/http/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test": "bun test",
"test:unit": "bun test src/",
"test:e2e": "bun run src/e2e/runner.ts",
"lint": "biome lint src",
"lint": "biome lint src --error-on-warnings",
"format": "biome format src"
},
"dependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/storage/bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[test]
coverageSkipTestFiles = true

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/storage/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"test:unit": "bun test",
"test:e2e": "bun run src/e2e/runner.ts",
"test:coverage": "bun test --coverage",
"lint": "biome check src",
"lint": "biome check src --error-on-warnings",
"format": "biome format src --write"
},
"devDependencies": {
Expand Down
6 changes: 6 additions & 0 deletions packages/terminal/bunfig.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[test]
coverageSkipTestFiles = true

[test.coverageThreshold]
line = 90
function = 90
2 changes: 1 addition & 1 deletion packages/terminal/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"test": "bun test",
"test:unit": "bun test src/",
"test:e2e": "bun run src/e2e/runner.ts",
"lint": "biome lint src",
"lint": "biome lint src --error-on-warnings",
"format": "biome format src"
},
"dependencies": {},
Expand Down
Loading