-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.html
More file actions
25 lines (25 loc) · 820 Bytes
/
Copy pathtest.html
File metadata and controls
25 lines (25 loc) · 820 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="color-scheme" content="dark light" />
<title>Trin Tests</title>
<!--<link rel="icon" type="image/png" href="icons/32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="icons/256.png" sizes="256x256" />-->
<link rel="stylesheet" href="test.css" />
<script type="module" src="trin.js"></script>
<script src="https://unpkg.com/papaparse@5.4.0/papaparse.min.js"></script>
<script type="module" src="test.js"></script>
<script type="module">
import * as trinTest from './test.js';
window.trinTest = trinTest;
window.trin = trinTest.trin;
</script>
</head>
<body class="no-trin-scaff">
<h1>Trin Tests</h1>
<ol id="tests"></ol>
<div id="errors"></div>
</body>
</html>