23 lines
629 B
HTML
23 lines
629 B
HTML
<!-- Bootstrap HTML for running the unit tests. -->
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<script>
|
|
window.logs = [];
|
|
console.log = function(message) {
|
|
window.logs.push(message);
|
|
}
|
|
console.warn = function(message) {
|
|
window.logs.push(message);
|
|
}
|
|
console.info = function(message) {
|
|
window.logs.push(message);
|
|
}
|
|
console.error = function(message) {
|
|
window.logs.push(message);
|
|
}
|
|
</script>
|
|
<script src="pyodide_dev.js"></script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|