7 lines
103 B
Bash
7 lines
103 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
|
||
|
|
set -e -u
|
||
|
|
|
||
|
|
source `dirname $0`/util/run_tests.sh
|
||
|
|
run_tests integration_specs "$@"
|