d2/ci/test.sh

14 lines
211 B
Bash
Raw Normal View History

#!/bin/sh
set -eu
cd "$(dirname "$0")/.."
if [ "$*" = "" ]; then
set ./...
fi
if [ "${CI:-}" ]; then
export FORCE_COLOR=1
2023-03-03 04:34:12 +00:00
npx playwright@1.31.1 install --with-deps chromium
fi
go test --timeout=30m "$@"