mirror of
https://github.com/beautifier/js-beautify.git
synced 2025-02-25 07:40:49 +00:00
11 lines
153 B
Bash
Executable File
11 lines
153 B
Bash
Executable File
#! /bin/sh
|
|
#
|
|
# Test suite launcher
|
|
#
|
|
|
|
if [ -z $PYTHON ]; then
|
|
env python -m unittest discover "$@"
|
|
else
|
|
env $PYTHON -m unittest discover "$@"
|
|
fi
|