-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathhterm_test.html
40 lines (35 loc) · 1.95 KB
/
hterm_test.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
30
31
32
33
34
35
36
37
38
39
40
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8'/>
<!-- npm modules -->
<script src='../../node_modules/mocha/mocha.js'></script>
<!-- initialize the test framework; this must come first -->
<script type='module' src='../js/hterm_test.js'></script>
<script type='module' src='../js/hterm_tests.js'></script>
<script type='module' src='../js/hterm_accessibility_reader_tests.js'></script>
<script type='module' src='../js/hterm_contextmenu_tests.js'></script>
<script type='module' src='../js/hterm_find_bar_tests.js'></script>
<script type='module' src='../js/hterm_keyboard_tests.js'></script>
<script type='module' src='../js/hterm_keyboard_keymap_tests.js'></script>
<script type='module' src='../js/hterm_notifications_tests.js'></script>
<script type='module' src='../js/hterm_parser_tests.js'></script>
<script type='module' src='../js/hterm_preference_manager_tests.js'></script>
<script type='module' src='../js/hterm_pubsub_tests.js'></script>
<script type='module' src='../js/hterm_screen_tests.js'></script>
<script type='module' src='../js/hterm_scrollport_tests.js'></script>
<script type='module' src='../js/hterm_terminal_tests.js'></script>
<script type='module' src='../js/hterm_terminal_io_tests.js'></script>
<script type='module' src='../js/hterm_text_attributes_tests.js'></script>
<script type='module' src='../js/hterm_vt_tests.js'></script>
<script type='module' src='../js/hterm_vt_canned_tests.js'></script>
<script type='module' src='../js/hterm_vt_character_map_tests.js'></script>
<script type='module' src='../third_party/intl-segmenter/intl-segmenter_tests.js'></script>
<script type='module' src='../third_party/wcwidth/wc_tests.js'></script>
<link href='../../node_modules/mocha/mocha.css' rel='stylesheet'/>
<link href='../../libdot/css/mocha-dark-theme.css' rel='stylesheet'/>
</head>
<body>
<div id='mocha'></div>
</body>
</html>