generated from ntoll/codespaces-project-template-pyscript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index2.html
29 lines (26 loc) · 934 Bytes
/
index2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<!DOCTYPE html>
<html lang="en">
<head>
<script src="/mini-coi.js" scope="./"></script>
<title>MicroPyTest test suite</title>
<!-- Recommended meta tags -->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<!-- PyScript CSS -->
<link rel="stylesheet" href="https://pyscript.net/releases/2024.8.2/core.css">
<!-- This script tag bootstraps PyScript -->
<script type="module" src="https://pyscript.net/releases/2024.8.2/core.js"></script>
<style>
body {
font-family: sans-serif;
}
</style>
</head>
<body>
<h1>MicroPyTest test suite (Pyodide)</h1>
<p>(<a href="./index.html">MicroPython version</a>)</p>
<script type="py" src="./main.py" config="./config.json" terminal async></script>
<p>Check browser console for expected <code>setup</code> and <code>teardown</code>
output.</p>
</body>
</html>