-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathindex.html
More file actions
40 lines (34 loc) · 754 Bytes
/
Copy pathindex.html
File metadata and controls
40 lines (34 loc) · 754 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>node-cqrs browser smoke test</title>
<style>
body {
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
padding: 16px;
}
pre {
background: #0b1020;
color: #e6e6e6;
padding: 12px;
border-radius: 8px;
overflow: auto;
}
.ok {
color: #19c37d;
}
.fail {
color: #ff4d4f;
}
</style>
</head>
<body>
<h1>node-cqrs browser smoke test</h1>
<p>Open DevTools console for details.</p>
<pre id="out">Running…</pre>
<script src="../../dist/browser/bundle.iife.min.js"></script>
<script src="./main.js"></script>
</body>
</html>