-
Notifications
You must be signed in to change notification settings - Fork 1
/
test.htm
115 lines (98 loc) · 5.15 KB
/
test.htm
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
<html lang="en">
<head>
<meta charset="utf-8">
<title>Unit Tests</title>
<script src="core/requirejs.js"></script>
<script src="tester/entry.js" async></script>
<!-- Modules to test and lint (test files are suffixed with _test) -->
<meta name="module" content="tester/matchers">
<meta name="module" content="3d/webglUtils">
<meta name="module" content="core/AnimatingProperty">
<meta name="module" content="core/arrayUtils">
<meta name="module" content="core/objectUtils">
<meta name="module" content="core/rateUtils">
<meta name="module" content="core/EventObject">
<meta name="module" content="core/sandboxUtils">
<meta name="module" content="core/workerUtils">
<meta name="module" content="math/Ellipse">
<meta name="module" content="math/LineSegment">
<meta name="module" content="math/matrix">
<meta name="module" content="math/Random">
<meta name="module" content="math/statistics">
<meta name="module" content="math/vector">
<!-- Extra modules to lint -->
<meta name="lint-module" content="3d/ModelPoint">
<meta name="lint-module" content="3d/ModelTorus">
<meta name="lint-module" content="display/documentUtils">
<meta name="lint-module" content="display/Full2DBoard">
<meta name="lint-module" content="display/Full3DBoard">
<meta name="lint-module" content="display/FullSwitchingBoard">
<meta name="lint-module" content="display/HierarchyTable">
<meta name="lint-module" content="display/Loader">
<meta name="lint-module" content="display/MarkerStore">
<meta name="lint-module" content="display/MarkerTypes3D">
<meta name="lint-module" content="display/MatchSummary">
<meta name="lint-module" content="display/NestedNav">
<meta name="lint-module" content="display/OptionsBar">
<meta name="lint-module" content="display/SplitView">
<meta name="lint-module" content="display/TreeTable">
<meta name="lint-module" content="engine/configuration">
<meta name="lint-module" content="engine/Engine">
<meta name="lint-module" content="engine/EntryManager">
<meta name="lint-module" content="engine/gameWorker">
<meta name="lint-module" content="engine/GameOrchestrator">
<meta name="lint-module" content="engine/MatchScorer">
<meta name="lint-module" content="engine/Navigation">
<meta name="lint-module" content="engine/sandboxedGames">
<meta name="lint-module" content="engine/sandboxedLoader">
<meta name="lint-module" content="engine/TournamentRunner">
<meta name="lint-module" content="fetch/entryUtils">
<meta name="lint-module" content="fetch/loaderWorker">
<meta name="lint-module" content="fetch/StackExchangeAPI">
<meta name="lint-module" content="matches/all_v_all">
<meta name="lint-module" content="matches/brawl">
<meta name="lint-module" content="matches/Match">
<meta name="lint-module" content="teams/free_for_all">
<meta name="lint-module" content="teams/round_robin">
<meta name="lint-module" content="teams/user_id_modulo">
<meta name="lint-module" content="games/common/BaseDisplay">
<meta name="lint-module" content="games/common/components/LeaderboardDisplay">
<meta name="lint-module" content="games/common/components/StepperOptions">
<meta name="lint-module" content="games/example/Display">
<meta name="lint-module" content="games/example/GameManager">
<meta name="lint-module" content="games/example/GameScorer">
<meta name="lint-module" content="games/battlebots/components/BoardRenderer">
<meta name="lint-module" content="games/battlebots/Display">
<meta name="lint-module" content="games/battlebots/GameManager">
<meta name="lint-module" content="games/battlebots/GameScorer">
<meta name="lint-module" content="games/captureflag/components/BoardRenderer">
<meta name="lint-module" content="games/captureflag/Display">
<meta name="lint-module" content="games/captureflag/GameManager">
<meta name="lint-module" content="games/captureflag/GameScorer">
<meta name="lint-module" content="games/botflocks/components/BoardRenderer">
<meta name="lint-module" content="games/botflocks/Display">
<meta name="lint-module" content="games/botflocks/GameManager">
<meta name="lint-module" content="games/botflocks/GameScorer">
<meta name="lint-module" content="games/fgtw/Display">
<meta name="lint-module" content="games/fgtw/GameManager">
<meta name="lint-module" content="games/fgtw/GameScorer">
<meta name="lint-module" content="games/spacewar/components/BoardRenderer">
<meta name="lint-module" content="games/spacewar/Display">
<meta name="lint-module" content="games/spacewar/GameManager">
<meta name="lint-module" content="games/spacewar/GameScorer">
<meta name="lint-module" content="games/tokens/Display">
<meta name="lint-module" content="games/tokens/GameManager">
<meta name="lint-module" content="games/tokens/GameScorer">
<meta name="lint-module" content="games/formic/components/BoardRenderer">
<meta name="lint-module" content="games/formic/components/ZoomedBoard">
<meta name="lint-module" content="games/formic/Display">
<meta name="lint-module" content="games/formic/GameManager">
<meta name="lint-module" content="games/formic/GameScorer">
<!-- non-module files cannot be tested/linted, so keep content to a minimum! -->
<!--<meta name="lint-module" content="engine/entry">-->
<!--<meta name="lint-module" content="tester/entry">-->
</head>
<body>
<noscript>These tests require Javascript!</noscript>
</body>
</html>