-
-
Notifications
You must be signed in to change notification settings - Fork 194
Expand file tree
/
Copy pathUnitTestSuite.js
More file actions
139 lines (137 loc) · 5.85 KB
/
UnitTestSuite.js
File metadata and controls
139 lines (137 loc) · 5.85 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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
/*
* GNU AGPL-3.0 License
*
* Copyright (c) 2021 - present core.ai . All rights reserved.
* Original work Copyright (c) 2012 - 2021 Adobe Systems Incorporated. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful, but WITHOUT
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License
* for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see https://opensource.org/licenses/AGPL-3.0.
*
*/
define(function (require, exports, module) {
require("spec/Phoenix-platform-test");
require("spec/Tauri-platform-test");
require("spec/utframework-suite-test");
require("spec/Async-test");
require("spec/CommandManager-test");
require("spec/CSSUtils-test");
require("spec/CSSUtils-integ-test");
require("spec/Document-test");
require("spec/Document-integ-test");
require("spec/Editor-test");
require("spec/EditorRedraw-test");
require("spec/EditorCommandHandlers-test");
require("spec/EditorCommandHandlers-integ-test");
require("spec/EditorManager-test");
require("spec/EventDispatcher-test");
require("spec/EventManager-test");
require("spec/ExtensionInterface-test");
require("spec/ExtensionLoader-integ-test");
require("spec/ExtensionLoader-test");
require("spec/ExtensionManager-test");
require("spec/FeatureGate-test");
require("spec/FileFilters-test");
require("spec/FileFilters-integ-test");
require("spec/FileSystem-test");
require("spec/FileTreeView-test");
require("spec/FileTreeViewModel-test");
require("spec/FileUtils-test");
require("spec/FindReplace-test");
require("spec/FindReplace-integ-test");
require("spec/HTMLInstrumentation-test");
require("spec/HTMLSimpleDOM-test");
require("spec/HTMLTokenizer-test");
require("spec/CodeHintUtils-test");
require("spec/JSONUtils-test");
require("spec/JSUtils-test");
require("spec/JSUtils-integ-test");
require("spec/KeyBindingManager-test");
require("spec/KeybindingManager-integ-test");
require("spec/LanguageManager-test");
require("spec/LanguageManager-integ-test");
require("spec/LowLevelFileIO-test");
require("spec/Metrics-test");
require("spec/MultiRangeInlineEditor-test");
require("spec/MultiRangeInlineEditor-integ-test");
require("spec/Pane-test");
require("spec/PreferencesBase-test");
require("spec/ProjectModel-test");
require("spec/QuickSearchField-test");
require("spec/RemoteFunctions-test");
require("spec/SpecRunnerUtils-test");
require("spec/StringMatch-test");
require("spec/StringUtils-test");
require("spec/TextRange-test");
require("spec/ThemeManager-test");
require("spec/UrlParams-test");
require("spec/ValidationUtils-test");
require("spec/ViewFactory-test");
require("spec/ViewUtils-test");
require("spec/XMLUtils-test");
require("spec/CodeInspection-integ-test");
require("spec/CodeInspection-fix-integ-test");
require("spec/CodeHint-integ-test");
require("spec/CSSInlineEdit-integ-test");
require("spec/DocumentCommandHandlers-integ-test");
require("spec/DocumentManager-integ-test");
require("spec/DragAndDrop-integ-test");
require("spec/EditorOptionHandlers-integ-test");
require("spec/ExtensionUtils-integ-test");
require("spec/InlineEditorProviders-integ-test");
require("spec/PreferencesManager-integ-test");
require("spec/MainViewFactory-integ-test");
require("spec/MainViewManager-integ-test");
require("spec/Keyboard-nav-integ-test");
require("spec/Menu-integ-test");
require("spec/ProjectManager-integ-test");
require("spec/QuickOpen-integ-test");
require("spec/ViewCommandHandlers-integ-test");
require("spec/WorkingSetView-integ-test");
require("spec/WorkingSetSort-integ-test");
require("spec/WorkerComm-test");
require("spec/FindInFiles-integ-test");
require("spec/QuickViewManager-test");
require("spec/SelectionViewManager-test");
require("spec/BeautificationManager-test");
require("spec/Template-for-integ-test");
require("spec/LiveDevelopmentMultiBrowser-test");
require("spec/LiveDevelopmentCustomServer-test");
require("spec/NewFileContentManager-test");
require("spec/InstallExtensionDialog-integ-test");
require("spec/ExtensionInstallation-test");
require("spec/NotificationUI-test");
require("spec/Storage-integ-test");
require("spec/file-encoding-integ-test");
require("spec/StateManager-test");
require("spec/TaskManager-integ-test");
require("spec/Generic-integ-test");
require("spec/spacing-auto-detect-integ-test");
require("spec/LocalizationUtils-test");
// Integrated extension tests
require("spec/Extn-InAppNotifications-integ-test");
require("spec/Extn-RemoteFileAdapter-integ-test");
require("spec/Extn-NavigationAndHistory-integ-test");
require("spec/Extn-RecentProjects-integ-test");
require("spec/Extn-JSHint-integ-test");
require("spec/Extn-ESLint-integ-test");
require("spec/Extn-CSSColorPreview-integ-test");
// extension integration tests
require("spec/Extn-CSSCodeHints-integ-test");
require("spec/Extn-HTMLCodeHints-Lint-integ-test");
require("spec/Extn-HtmlTagSyncEdit-integ-test");
// Node Tests
require("spec/NodeConnection-test");
// todo TEST_MODERN
// require("spec/LanguageTools-test"); LSP tests. disabled for now
// require("spec/Menu-native-integ-test"); evaluate after we have native menus in os installed builds
});