mirror of
https://github.com/zkldi/Tachi.git
synced 2026-09-27 09:28:12 +03:00
12 lines
401 B
Bash
Executable File
12 lines
401 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cd "$(dirname "$0")" || exit 1
|
|
|
|
# Output stderr and stdout to the terminal, but only save stderr to a file
|
|
# Isn't bash wonderful?
|
|
|
|
ts-node test/collections.test.ts 2> >(tee failed-tests.log >&2)
|
|
ts-node test/id.test.ts 2> >(tee -a failed-tests.log >&2)
|
|
ts-node test/folder-id.test.ts 2> >(tee -a failed-tests.log >&2)
|
|
ts-node test/table-folders.test.ts 2> >(tee -a failed-tests.log >&2)
|