forked from mrdoob/three.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathunittests_editor.html
More file actions
executable file
·124 lines (112 loc) · 6.07 KB
/
Copy pathunittests_editor.html
File metadata and controls
executable file
·124 lines (112 loc) · 6.07 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
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
116
117
118
119
120
121
122
123
124
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>ThreeJS Unit Tests - Using Files in /editor</title>
<link rel="stylesheet" href="qunit-1.18.0.css">
</head>
<body>
<div id="qunit"></div>
<script src="../unit/qunit-1.18.0.js"></script>
<!-- add sources to test below -->
<script src="../../build/three.min.js"></script>
<script src="../../editor/js/libs/codemirror/codemirror.js"></script>
<script src="../../editor/js/libs/codemirror/mode/javascript.js"></script>
<script src="../../editor/js/libs/esprima.js"></script>
<script src="../../editor/js/libs/sortable.min.js"></script>
<script src="../../editor/js/libs/signals.min.js"></script>
<script src="../../editor/js/libs/ui.js"></script>
<script src="../../editor/js/libs/ui.three.js"></script>
<script src="../../editor/js/libs/app.js"></script>
<script src="../../editor/js/Player.js"></script>
<script src="../../editor/js/Script.js"></script>
<!--
<script src="../examples/js/effects/VREffect.js"></script>
<script src="../examples/js/controls/VRControls.js"></script>
-->
<script src="../../editor/js/Storage.js"></script>
<script src="../../editor/js/Editor.js"></script>
<script src="../../editor/js/Config.js"></script>
<script src="../../editor/js/Loader.js"></script>
<script src="../../editor/js/Menubar.js"></script>
<script src="../../editor/js/Menubar.File.js"></script>
<script src="../../editor/js/Menubar.Edit.js"></script>
<script src="../../editor/js/Menubar.Add.js"></script>
<script src="../../editor/js/Menubar.Play.js"></script>
<script src="../../editor/js/Menubar.View.js"></script>
<script src="../../editor/js/Menubar.Examples.js"></script>
<script src="../../editor/js/Menubar.Help.js"></script>
<script src="../../editor/js/Menubar.Status.js"></script>
<script src="../../editor/js/Sidebar.js"></script>
<script src="../../editor/js/Sidebar.Project.js"></script>
<script src="../../editor/js/Sidebar.Scene.js"></script>
<script src="../../editor/js/Sidebar.Object3D.js"></script>
<script src="../../editor/js/Sidebar.Animation.js"></script>
<script src="../../editor/js/Sidebar.Geometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.Geometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.BufferGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.Modifiers.js"></script>
<script src="../../editor/js/Sidebar.Geometry.BoxGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.CircleGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.CylinderGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.IcosahedronGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.PlaneGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.SphereGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.TorusGeometry.js"></script>
<script src="../../editor/js/Sidebar.Geometry.TorusKnotGeometry.js"></script>
<script src="../../editor/js/Sidebar.Material.js"></script>
<script src="../../editor/js/Sidebar.Script.js"></script>
<script src="../../editor/js/Toolbar.js"></script>
<script src="../../editor/js/Viewport.js"></script>
<script src="../../editor/js/Viewport.Info.js"></script>
<script src="../../editor/js/History.js"></script>
<!-- command object classes -->
<script src="../../editor/js/Command.js"></script>
<script src="../../editor/js/commands/AddObjectCommand.js"></script>
<script src="../../editor/js/commands/AddScriptCommand.js"></script>
<script src="../../editor/js/commands/MoveObjectCommand.js"></script>
<script src="../../editor/js/commands/MultiCmdsCommand.js"></script>
<script src="../../editor/js/commands/RemoveObjectCommand.js"></script>
<script src="../../editor/js/commands/RemoveScriptCommand.js"></script>
<script src="../../editor/js/commands/SetColorCommand.js"></script>
<script src="../../editor/js/commands/SetGeometryCommand.js"></script>
<script src="../../editor/js/commands/SetGeometryValueCommand.js"></script>
<script src="../../editor/js/commands/SetMaterialCommand.js"></script>
<script src="../../editor/js/commands/SetMaterialColorCommand.js"></script>
<script src="../../editor/js/commands/SetMaterialMapCommand.js"></script>
<script src="../../editor/js/commands/SetMaterialValueCommand.js"></script>
<script src="../../editor/js/commands/SetPositionCommand.js"></script>
<script src="../../editor/js/commands/SetRotationCommand.js"></script>
<script src="../../editor/js/commands/SetScaleCommand.js"></script>
<script src="../../editor/js/commands/SetSceneCommand.js"></script>
<script src="../../editor/js/commands/SetScriptValueCommand.js"></script>
<script src="../../editor/js/commands/SetUuidCommand.js"></script>
<script src="../../editor/js/commands/SetValueCommand.js"></script>
<!-- add class-based unit tests below -->
<script src="editor/CommonUtilities.js"></script>
<!-- Undo-Redo tests -->
<script src="editor/TestAddObjectCommandAndRemoveObjectCommand.js"></script>
<script src="editor/TestAddScriptCommand.js"></script>
<script src="editor/TestMoveObjectCommand.js"></script>
<script src="editor/TestMultiCmdsCommand.js"></script>
<script src="editor/TestRemoveScriptCommand.js"></script>
<script src="editor/TestSetColorCommand.js"></script>
<script src="editor/TestSetGeometryCommand.js"></script>
<script src="editor/TestSetGeometryValueCommand.js"></script>
<script src="editor/TestSetMaterialCommand.js"></script>
<script src="editor/TestSetMaterialColorCommand.js"></script>
<script src="editor/TestSetMaterialMapCommand.js"></script>
<script src="editor/TestSetMaterialValueCommand.js"></script>
<script src="editor/TestSetPositionCommand.js"></script>
<script src="editor/TestSetRotationCommand.js"></script>
<script src="editor/TestSetScaleCommand.js"></script>
<script src="editor/TestSetSceneCommand.js"></script>
<script src="editor/TestSetScriptValueCommand.js"></script>
<script src="editor/TestSetUuidCommand.js"></script>
<script src="editor/TestSetValueCommand.js"></script>
<script src="editor/TestNestedDoUndoRedo.js"></script>
<script src="editor/TestSerialization.js"></script>
<script src="editor/TestNegativeCases.js"></script>
<script src="editor/TestMassUndoAndRedo.js"></script>
</body>
</html>