File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change 10
10
11
11
cd $ROOT
12
12
13
+ if [[ -z " $VSCODE_REMOTE_SERVER_PATH " ]]; then
14
+ echo " Running Web integration tests out of sources."
15
+ else
16
+ # Run from a built: need to compile all test extensions
17
+ # because we run extension tests from their source folders
18
+ # and the build bundles extensions into .build webpacked
19
+ yarn gulp compile-extension:vscode-api-tests \
20
+ compile-extension:vscode-colorize-tests \
21
+ compile-extension:vscode-custom-editor-tests \
22
+ compile-extension:markdown-language-features \
23
+ compile-extension:typescript-language-features \
24
+ compile-extension:emmet \
25
+ compile-extension:css-language-features-server \
26
+ compile-extension:html-language-features-server \
27
+ compile-extension:json-language-features-server \
28
+ compile-extension:git \
29
+ compile-extension:ipynb \
30
+ compile-extension-media
31
+
32
+ echo " Running Web integration tests with '$VSCODE_REMOTE_SERVER_PATH ' as build."
33
+ fi
34
+
13
35
# Tests in the extension host
14
36
TEST_SCRIPT=" $ROOT /test/integration/browser/out/index.js"
15
37
You can’t perform that action at this time.
0 commit comments