mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
27 lines
691 B
HTML
27 lines
691 B
HTML
<!-- Bootstrap HTML for running the unit tests. -->
|
|
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<title>pyodide</title>
|
|
<script type="text/javascript">
|
|
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);
|
|
};
|
|
console.debug = function (message) {
|
|
window.logs.push(message);
|
|
};
|
|
</script>
|
|
<script src="./pyodide.js"></script>
|
|
</head>
|
|
<body></body>
|
|
</html>
|