#!/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 "$@"