Skip to content

Commit

Permalink
chore(deps): update to latest express
Browse files Browse the repository at this point in the history
  • Loading branch information
YOU54F committed Oct 3, 2024
1 parent ce28653 commit 95fd85b
Show file tree
Hide file tree
Showing 3 changed files with 163 additions and 140 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"express": "^4.21.0",
"express": "^5.0.0",
"globals": "^15.10.0",
"gulp": "^5.0.0",
"gulp-bump": "^3.2.0",
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/cli.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ describe('swagger-mock-validator/cli', () => {

const expressApp = express();

expressApp.get('/*', (request, _, next) => {
expressApp.get(/(.*)/, (request, _, next) => {
mockPactBroker.get(request.headers, request.url);
next();
});
Expand Down
Loading

0 comments on commit 95fd85b

Please sign in to comment.