mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-29 06:27:49 +00:00
15 lines
364 B
Bash
15 lines
364 B
Bash
cd "$(dirname "$0")"
|
|
|
|
for cmd in rhino "rhino -require" narwhal ringo phantomjs; do
|
|
echo "Testing in $cmd..."
|
|
$cmd test.js ../dist/lodash.compat.js && $cmd test.js ../dist/lodash.compat.min.js
|
|
echo ""
|
|
done
|
|
|
|
echo "Testing in node..."
|
|
node test.js ../dist/lodash.js && node test.js ../dist/lodash.min.js
|
|
|
|
echo ""
|
|
echo "Testing in a browser..."
|
|
open index.html
|