2020-04-30 11:52:54 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
main() {
|
|
|
|
cd "$(dirname "$0")/../.."
|
2020-11-03 21:24:06 +00:00
|
|
|
cd test/test-plugin
|
|
|
|
make -s out/index.js
|
2021-01-21 23:39:04 +00:00
|
|
|
# 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.
|
|
|
|
cd "$OLDPWD"
|
2021-02-09 21:36:05 +00:00
|
|
|
CS_DISABLE_PLUGINS=true ./test/node_modules/.bin/jest "$@"
|
2020-04-30 11:52:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
main "$@"
|