Archived
1
0

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.
This commit is contained in:
Joe Previte 2022-06-30 14:01:18 -07:00
parent 21d56f9a29
commit 58c4826af8
No known key found for this signature in database
GPG Key ID: 2C91590C6B742C24

View File

@ -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 "$@"