Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
cee1553
Initial plan
Copilot Feb 10, 2026
c305f80
Add unit tests for Router, ServerUtils, and ServerModule
Copilot Feb 10, 2026
a3a4a99
Add .gitignore to exclude node_modules and other artifacts
Copilot Feb 10, 2026
a3c70ca
Add comment to test documenting double-slash behavior and fix workflo…
Copilot Feb 10, 2026
a1ab899
Improve tests
taylortom Feb 19, 2026
874737f
Update tests
taylortom Feb 19, 2026
8c5a9ce
Update .gitignore
taylortom Feb 19, 2026
cbb08e2
Chore(release): 1.2.2 [skip ci]
semantic-release-bot Feb 11, 2026
a3e701b
New: Add ability to send extra error data with error handler (fixes #50)
taylortom Feb 18, 2026
7d6cad5
Chore(release): 1.3.0 [skip ci]
semantic-release-bot Feb 18, 2026
9875103
Update tests
taylortom Feb 19, 2026
1660cd2
Fix: Update peer dependencies (fixes #)
taylortom Feb 11, 2026
72c8352
Update dependencies
taylortom Feb 18, 2026
781a9c4
Update package-lock.json
taylortom Feb 19, 2026
4297376
Remove unused import
taylortom Feb 19, 2026
b23876f
Initial plan
Copilot Feb 10, 2026
70ee28d
Add unit tests for Router, ServerUtils, and ServerModule
Copilot Feb 10, 2026
9059361
Add .gitignore to exclude node_modules and other artifacts
Copilot Feb 10, 2026
8739c1a
Add comment to test documenting double-slash behavior and fix workflo…
Copilot Feb 10, 2026
a84700b
Improve tests
taylortom Feb 19, 2026
1571c73
Update tests
taylortom Feb 19, 2026
bbe4b0f
Update .gitignore
taylortom Feb 19, 2026
55b5a17
Update tests
taylortom Feb 19, 2026
727e62a
Update dependencies
taylortom Feb 18, 2026
16b7a97
Remove unused import
taylortom Feb 19, 2026
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
15 changes: 15 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: Tests
on: push
jobs:
default:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 'lts/*'
cache: 'npm'
- run: npm ci
- run: npm test
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules/
.DS_Store
Thumbs.db
2 changes: 1 addition & 1 deletion lib/ServerUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class ServerUtils {
}
res
.status(error.statusCode)
.json({ code: error.code, message: req.translate?.(error) ?? error.message })
.json({ code: error.code, message: req.translate?.(error) ?? error.message, data: error.data })
}
next()
}
Expand Down
Loading