test.html: don't stringify response from server for more readable output dumps sans escaped quotes

This commit is contained in:
Nihanth Subramanya 2018-01-15 18:21:50 +05:30
Родитель ea04a9fdf4
Коммит 66ff3b4d60
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -13,7 +13,7 @@
}
let responseDumpElt = document.getElementById("responseDump");
responseDumpElt.appendChild(
document.createTextNode(JSON.stringify(xhr.response)));
document.createTextNode(xhr.response));
responseDumpElt.appendChild(
document.createElement("hr"));
responseDumpElt.appendChild(