Skip to content

Commit

Permalink
add scripts/check-node-all.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
nektro committed Dec 12, 2024
1 parent 8fd46d4 commit 3b3c29e
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions scripts/check-node-all.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
#!/bin/bash

i=0
j=0

for x in $(find test/js/node/test/parallel -type f -name "test-$1*.js")
do
i=$((i+1))
echo ./$x
if timeout 2 $PWD/build/debug/bun-debug ./$x
then
j=$((j+1))
fi
echo
done

echo $i tests tested
echo $j tests passed

0 comments on commit 3b3c29e

Please sign in to comment.