We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c05d5fd commit c10a14cCopy full SHA for c10a14c
test/browser_reporting.js
@@ -1,5 +1,5 @@
1
// Set this to true to have stdout and stderr sent back to the server
2
-var captureStdoutStderr = false;
+var captureStdoutStderr = true;
3
4
var hasModule = typeof Module === 'object' && Module;
5
test/common.py
@@ -2127,7 +2127,9 @@ def do_POST(self):
2127
self.send_response(200)
2128
self.end_headers()
2129
else:
2130
- print(f'do_POST: unexpected POST: {urlinfo.query}')
+ print(f'do_POST: unexpected POST: {self.path} {urlinfo}')
2131
+ self.send_response(404)
2132
+ self.end_headers()
2133
2134
def do_GET(self):
2135
info = urlparse(self.path)
0 commit comments