Skip to content

Commit 1e24681

Browse files
author
Genevieve LEsperance
committed
Add test script.
1 parent bbca446 commit 1e24681

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

scripts/test

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/bash -eu
2+
3+
function main() {
4+
local root_dir
5+
root_dir="$( cd "$( dirname "${BASH_SOURCE[0]}" )/.." && pwd )"
6+
7+
pushd "${root_dir}" > /dev/null
8+
ginkgo -p -r -race -randomizeAllSpecs -randomizeSuites
9+
popd > /dev/null
10+
}
11+
12+
main "${@:-""}"

0 commit comments

Comments
 (0)