Skip to content
This repository was archived by the owner on Feb 4, 2022. It is now read-only.

Commit 65dcca4

Browse files
committed
fix(mock-server): expose potential errors in message handlers
1 parent 99acbab commit 65dcca4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/mock/lib/server.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,11 @@ Server.prototype.start = function() {
135135
self.on('message', function(message, connection) {
136136
var request = new Request(self, connection, message);
137137
if (self.messageHandler) {
138-
self.messageHandler(request);
138+
try {
139+
self.messageHandler(request);
140+
} catch (err) {
141+
console.log(err.stack);
142+
}
139143
} else {
140144
self.messages.push(request);
141145
}

0 commit comments

Comments
 (0)