mirror of
https://github.com/discourse/discourse.git
synced 2025-09-06 10:50:21 +08:00
TESTS: Integration tests for badge pages
This commit is contained in:
parent
77332e8b57
commit
d7ad3bb2b6
5 changed files with 31 additions and 6 deletions
|
@ -1,5 +1,3 @@
|
|||
/* global console */
|
||||
|
||||
function parsePostData(query) {
|
||||
var result = {};
|
||||
query.split("&").forEach(function(part) {
|
||||
|
@ -60,7 +58,9 @@ export default function() {
|
|||
};
|
||||
|
||||
server.unhandledRequest = function(verb, path) {
|
||||
console.error('Unhandled request in test environment: ' + path + ' (' + verb + ')');
|
||||
var error = 'Unhandled request in test environment: ' + path + ' (' + verb + ')';
|
||||
window.console.error(error);
|
||||
throw error;
|
||||
};
|
||||
|
||||
return server;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue