-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathnassh_test.html
40 lines (35 loc) · 1.9 KB
/
nassh_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/nassh_test.js'></script>
<script src='../js/chrome_mock_for_test.js'></script>
<!-- All the unittests go below here. -->
<script type='module' src='../js/lib_array_tests.js'></script>
<script type='module' src='../js/lib_credential_cache_tests.js'></script>
<script type='module' src='../js/nasftp_cli_tests.js'></script>
<script type='module' src='../js/nassh_tests.js'></script>
<script type='module' src='../js/nassh_agent_tests.js'></script>
<script type='module' src='../js/nassh_agent_message_tests.js'></script>
<script type='module' src='../js/nassh_agent_message_types_tests.js'></script>
<script type='module' src='../js/nassh_app_tests.js'></script>
<script type='module' src='../js/nassh_buffer_tests.js'></script>
<script type='module' src='../js/nassh_buffer_concat_tests.js'></script>
<script type='module' src='../js/nassh_buffer_scatgat_tests.js'></script>
<script type='module' src='../js/nassh_command_instance_tests.js'></script>
<script type='module' src='../js/nassh_goog_metrics_reporter_tests.js'></script>
<script type='module' src='../js/nassh_preference_manager_tests.js'></script>
<script type='module' src='../js/nassh_sftp_fsp_tests.js'></script>
<script type='module' src='../js/nassh_sftp_packet_tests.js'></script>
<script type='module' src='../js/nassh_sftp_packet_types_tests.js'></script>
<script type='module' src='../js/nassh_stream_relay_corpv4_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>