tests: remove useless test file

This commit is contained in:
Pierre Tachoire
2024-12-04 14:26:21 +01:00
parent 47eef392d1
commit 4e2b35b585

View File

@@ -1,10 +0,0 @@
<script>
(async function() {
const response = await fetch(new Request('https://httpbin.io/json'));
if (response.ok) {
document.firstElementChild.appendChild(document.createTextNode(response.ok+"\n"));
const body = await response.text();
document.firstElementChild.appendChild(document.createTextNode("body:"+body+"\n"));
}
}());
</script>