fix(deps): update build and runtime dependencies and align route validation test expectations

This commit is contained in:
2026-03-19 16:21:37 +00:00
parent 53938df8db
commit 0fb3988123
5 changed files with 2166 additions and 2639 deletions

View File

@@ -174,7 +174,7 @@ tap.test('Route Validation - validateRouteAction', async () => {
const invalidSocketResult = validateRouteAction(invalidSocketAction);
expect(invalidSocketResult.valid).toBeFalse();
expect(invalidSocketResult.errors.length).toBeGreaterThan(0);
expect(invalidSocketResult.errors[0]).toInclude('Socket handler function is required');
expect(invalidSocketResult.errors[0]).toInclude('handler function is required');
});
tap.test('Route Validation - validateRouteConfig', async () => {