We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6eca4b0 commit a4f62bfCopy full SHA for a4f62bf
tests/acceptance/parallel_spy_parallel_test.sh
@@ -1,9 +1,10 @@
1
#!/usr/bin/env bash
2
+# shellcheck disable=SC2155
3
set -euo pipefail
4
5
function test_spies_work_in_parallel() {
- local file1=tests/acceptance/fixtures/test_parallel_spy_file1.sh
6
- local file2=tests/acceptance/fixtures/test_parallel_spy_file2.sh
+ local file1="$(current_dir)/fixtures/test_parallel_spy_file1.sh"
7
+ local file2="$(current_dir)/fixtures/test_parallel_spy_file2.sh"
8
9
./bashunit --parallel "$file1" "$file2"
10
assert_successful_code
0 commit comments