mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
342 B
12 lines
342 B
#!/usr/bin/env bash
|
|
|
|
ROOT=$(unset CDPATH && cd $(dirname "${BASH_SOURCE[0]}")/.. && pwd)
|
|
|
|
which ginkgo &> /dev/null
|
|
if [ $? -ne 0 ]; then
|
|
echo "ginkgo not found, try to install..."
|
|
go get -u github.com/onsi/ginkgo/ginkgo
|
|
fi
|
|
|
|
ginkgo -nodes=1 ${ROOT}/test/e2e -- -frpc-path=${ROOT}/bin/frpc -frps-path=${ROOT}/bin/frps -log-level=debug
|