From 58c4826af82c12d3bc79340945204e6b7dc8cf04 Mon Sep 17 00:00:00 2001 From: Joe Previte Date: Thu, 30 Jun 2022 14:01:18 -0700 Subject: [PATCH] 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. --- ci/dev/test-e2e.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ci/dev/test-e2e.sh b/ci/dev/test-e2e.sh index 00724ac2b..629cda66e 100755 --- a/ci/dev/test-e2e.sh +++ b/ci/dev/test-e2e.sh @@ -44,7 +44,10 @@ main() { fi cd test - yarn playwright test "$@" + # NOTE@jsjoeio + # Something strange is happening after the 1.68 update + # VS Code won't load without this set so I'm adding here. + VSCODE_DEV=1 yarn playwright test "$@" } main "$@"