Skip to content

Commit 58c4826

Browse files
committed
fix: add VSCODE_DEV=1 to e2e script
I'm not sure what changed in the latest version but without setting VSCODE_DEV=1, code-server won't load. This fixes that.
1 parent 21d56f9 commit 58c4826

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

ci/dev/test-e2e.sh

+4-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,10 @@ main() {
4444
fi
4545

4646
cd test
47-
yarn playwright test "$@"
47+
# NOTE@jsjoeio
48+
# Something strange is happening after the 1.68 update
49+
# VS Code won't load without this set so I'm adding here.
50+
VSCODE_DEV=1 yarn playwright test "$@"
4851
}
4952

5053
main "$@"

0 commit comments

Comments
 (0)