mirror of
https://github.com/cdr/code-server.git
synced 2025-12-06 00:14:08 +01:00
We are trying to update Express to fix a vulnerability. We would have to update the plugins as well, but since we are no longer using the plugin system, we can just delete it instead.
15 lines
369 B
Bash
Executable file
15 lines
369 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
source ./ci/lib.sh
|
|
|
|
# We must keep jest in a sub-directory. See ../../test/package.json for more
|
|
# information. We must also run it from the root otherwise coverage will not
|
|
# include our source files.
|
|
./test/node_modules/.bin/jest "$@" --testRegex "./test/unit/.*ts"
|
|
}
|
|
|
|
main "$@"
|