-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathtests.html
56 lines (45 loc) · 2.09 KB
/
tests.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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>SOES EEPROM Generator spec runner</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-3.8.0/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine-3.8.0/jasmine.css">
<script src="lib/jasmine-3.8.0/jasmine.js"></script>
<script src="lib/jasmine-3.8.0/jasmine-html.js"></script>
<script src="lib/jasmine-3.8.0/boot.js"></script>
<!-- include source files here... -->
<script src="src/constants.js"></script>
<script src="src/validation.js"></script>
<script src="src/od.js"></script>
<script src="src/file_io.js"></script>
<script src="src/backup.js"></script>
<script src="src/binaries.js"></script>
<script src="src/readers/xml_reader.js"></script>
<script src="src/generators/EEPROM.js"></script>
<script src="src/generators/esi_xml.js"></script>
<script src="src/generators/ecat_options.js"></script>
<script src="src/generators/objectlist.js"></script>
<script src="src/generators/utypes.js"></script>
<!-- include spec dependencies here... -->
<script src="spec/helpers/customMatchers.js"></script>
<script src="spec/helpers/formMockHelper.js"></script>
<!-- include spec files here... -->
<script src="spec/backupSpecs.js"></script>
<script src="spec/binariesSpecs.js"></script>
<script src="spec/odSpecs.js"></script>
<script src="spec/readers/xml_reader_cia402exampleSpecs.js"></script>
<script src="spec/generators/emptyProjectSpecs.js"></script>
<script src="spec/generators/cia402exampleProjectSpecs.js"></script>
<script src="spec/generators/enabledFoEProjectSpecs.js"></script>
<script src="spec/generators/escSpecificSpecs.js"></script>
<script src="spec/generators/spiModeHexSpecs.js"></script>
<script src="spec/generators/VAR/ARRAY_Specs.js"></script>
<script src="spec/generators/VAR/INTEGER8_Specs.js"></script>
<script src="spec/generators/VAR/INTEGER64_Specs.js"></script>
<script src="spec/generators/VAR/VISIBLE_STRING_Specs.js"></script>
<!-- <script src="spec/readers/xml_reader_cia402exampleSpecs.js"></script> -->
</head>
<body>
</body>
</html>