mirror of
https://github.com/nolanlawson/blob-util.git
synced 2025-12-08 19:46:19 +00:00
10 lines
122 B
Bash
Executable File
10 lines
122 B
Bash
Executable File
#!/bin/bash
|
|
|
|
: ${CLIENT:="node"}
|
|
|
|
if [ "$CLIENT" == "node" ]; then
|
|
npm run test-node
|
|
else
|
|
npm run test-browser
|
|
fi
|