14 lines
199 B
Bash
Executable File
14 lines
199 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
main() {
|
|
cd "$(dirname "$0")/../.."
|
|
|
|
cd test/test-plugin
|
|
make -s out/index.js
|
|
cd $OLDPWD
|
|
mocha -r ts-node/register ./test/*.test.ts "$@"
|
|
}
|
|
|
|
main "$@"
|