mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 08:27:17 +01:00
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:
parent
21d56f9a29
commit
58c4826af8
1 changed files with 4 additions and 1 deletions
|
|
@ -44,7 +44,10 @@ main() {
|
||||||
fi
|
fi
|
||||||
|
|
||||||
cd test
|
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 "$@"
|
main "$@"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue