-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathindex.html
More file actions
48 lines (43 loc) · 1.49 KB
/
index.html
File metadata and controls
48 lines (43 loc) · 1.49 KB
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
41
42
43
44
45
46
47
48
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Effect Browser App</title>
</head>
<body>
<h1>Effect Browser E2E Test</h1>
<div id="app">
<section>
<h2>Error Tests</h2>
<input type="button" value="Capture Exception" id="exception-button" />
</section>
<section>
<h2>Effect Span Tests</h2>
<input type="button" value="Create Effect Span" id="effect-span-button" />
<span id="effect-span-result"></span>
</section>
<section>
<h2>Effect Failure Tests</h2>
<input type="button" value="Effect.fail()" id="effect-fail-button" />
<span id="effect-fail-result"></span>
<br />
<input type="button" value="Effect.die()" id="effect-die-button" />
<span id="effect-die-result"></span>
</section>
<section>
<h2>Log Tests</h2>
<input type="button" value="Send Logs" id="log-button" />
<span id="log-result"></span>
<br />
<input type="button" value="Send Log with Context" id="log-context-button" />
<span id="log-context-result"></span>
</section>
<section id="navigation">
<h2>Navigation Test</h2>
<a id="navigation-link" href="#navigation-target">Navigation Link</a>
<div id="navigation-target" style="margin-top: 50px">Navigated Element</div>
</section>
</div>
</body>
</html>