14 lines
198 B
Bash
Executable File
14 lines
198 B
Bash
Executable File
#!/bin/sh
|
|
# script/test: run the test suite.
|
|
set -eu
|
|
|
|
ROOT="$(cd "$(dirname "$0")/.." && pwd -P)"
|
|
|
|
main() {
|
|
cd "$ROOT"
|
|
echo "Running tests..."
|
|
timeout 30 yarn run test 2>&1
|
|
}
|
|
|
|
main "$@"
|