Timothy J. Warren
d20c308f53
Some checks failed
timw4mail/scroll/pipeline/head There was a failure building this commit
12 lines
439 B
Bash
Executable File
12 lines
439 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
PARENT_DIR="$(dirname "$(realpath "$0")")"
|
|
TSX="$(realpath "${PARENT_DIR}/../node_modules/.bin/tsx")"
|
|
|
|
"${TSX}" --test --experimental-test-coverage \
|
|
--test-reporter=dot \
|
|
--test-reporter-destination=stdout \
|
|
--test-reporter=lcov \
|
|
--test-reporter-destination=coverage/raw/tsx.lcov './src/common/all_test.ts'
|
|
|
|
genhtml --ignore-errors inconsistent,inconsistent -o coverage/tsx coverage/raw/tsx.lcov |