Skip to content
Merged
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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"intraday": "tsx src/index.ts --intraday",
"refresh": "tsx src/index.ts --refresh",
"typecheck": "tsc --noEmit",
"test": "node --import=tsx/esm --test test/**/*.test.ts",
"test": "node --import=tsx/esm --test test/util.test.ts",
Copy link

Copilot AI Apr 28, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The test script is now hard-coded to a single file (test/util.test.ts), so any additional test files added later will be silently skipped unless the script is updated. If the goal is to avoid ** globbing on sh while still picking up multiple tests, consider using a POSIX-safe pattern like test/*.test.ts (or a directory-based invocation if supported) so new tests in test/ run automatically.

Suggested change
"test": "node --import=tsx/esm --test test/util.test.ts",
"test": "node --import=tsx/esm --test test/*.test.ts",

Copilot uses AI. Check for mistakes.
"smoke": "npx tsx smoke/smoke-fx.ts && npx tsx smoke/smoke-conversion.ts && npx tsx smoke/smoke-money-format.ts",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\""
Expand Down
Loading