mirror of
https://github.com/silkimen/cordova-plugin-advanced-http.git
synced 2026-01-31 00:00:03 +08:00
9 lines
164 B
Bash
Executable File
9 lines
164 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
ROOT="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"/..
|
|
|
|
pushd $ROOT
|
|
./node_modules/.bin/mocha ./test/mocha-specs/test.js "$@"
|
|
popd
|