- starting pong game 3d
This commit is contained in:
Kum1ta
2024-07-30 01:08:32 +02:00
parent d27ab24c5e
commit 57c261c689
1284 changed files with 680273 additions and 0 deletions

16
site/node_modules/stats/test/run generated vendored Executable file
View File

@ -0,0 +1,16 @@
#!/bin/sh
export NODE_ENV=test
echo
for file in $@; do
printf "\033[90m ${file#test/}\033[0m "
node $file 2> /tmp/stderr && echo "\033[36m✓\033[0m"
code=$?
if test $code -ne 0; then
echo "\033[31m✖\033[0m"
cat /tmp/stderr >&2
exit $code
fi
done
echo