mirror of
https://github.com/oven-sh/bun
synced 2026-02-02 15:08:46 +00:00
chore: add usage messages to check-node.sh (#15885)
Co-authored-by: Don Isaac <don@bun.sh>
This commit is contained in:
@@ -1,8 +1,28 @@
|
||||
#!/bin/bash
|
||||
|
||||
# How to use this script:
|
||||
# 1. Pick a module from node's standard library (e.g. 'assert', 'fs')
|
||||
# 2. Copy over relevant tests from node's parallel test suite into test/js/node/test/parallel
|
||||
# 3. Run this script, e.g. `./scripts/check-node.sh fs`
|
||||
# 4. Tests that passed get staged for commit
|
||||
|
||||
i=0
|
||||
j=0
|
||||
|
||||
if [[ -z $1 ]]
|
||||
then
|
||||
echo "Usage: $0 <module-name>"
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $1 in
|
||||
-h|--help)
|
||||
echo "Usage: $0 <module-name>"
|
||||
echo "Run all parallel tests for a single module in node's standard library"
|
||||
exit 0
|
||||
;;
|
||||
esac
|
||||
|
||||
export BUN_DEBUG_QUIET_LOGS=1
|
||||
export NO_COLOR=1
|
||||
|
||||
|
||||
Reference in New Issue
Block a user