File tree 2 files changed +24
-5
lines changed
2 files changed +24
-5
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,26 @@ main() {
32
32
popd
33
33
fi
34
34
35
+ # TODO@jsjoeio get this working like in test-unit.sh
36
+ # ln -s "/usr/local/Cellar/code-server/4.7.0/libexec/lib/vscode/out" ./lib/vscode/out
37
+ # source ./ci/lib.sh
38
+
39
+ # Our code imports from `out` in order to work during development but if you
40
+ # have only built for production you will have not have this directory. In
41
+ # that case symlink `out` to a production build directory.
42
+ # if [[ ! -e lib/vscode/out ]]; then
43
+ # pushd lib
44
+ # local out=(vscode-reh-web-*)
45
+ # if [[ -d "${out[0]}" ]]; then
46
+ # ln -s "../${out[0]}/out" ./vscode/out
47
+ # else
48
+ # echo "Could not find lib/vscode/out or lib/vscode-reh-web-*"
49
+ # echo "Code must be built before running unit tests"
50
+ # # exit 1
51
+ # fi
52
+ # popd
53
+ # fi
54
+
35
55
echo " Running tests with code-server binary: '$path '"
36
56
37
57
if [[ ! -f $path ]]; then
Original file line number Diff line number Diff line change 1
1
import { promises as fs } from "fs"
2
2
import * as path from "path"
3
- import { clean , tmpdir } from "../../../ utils/helpers"
4
- import * as httpserver from "../../../ utils/httpserver"
5
- import * as integration from "../../../ utils/integration"
3
+ import { clean , tmpdir } from "../utils/helpers"
4
+ import * as httpserver from "../utils/httpserver"
5
+ import * as integration from "../utils/integration"
6
6
7
- // TODO@jsjoeio - move these to integration tests since they rely on Code
8
- // to be built
7
+ // TODO@jsjoeio - remove skip when script fixed
9
8
describe . skip ( "vscode" , ( ) => {
10
9
let codeServer : httpserver . HttpServer | undefined
11
10
You can’t perform that action at this time.
0 commit comments