Commit 4f9a291a authored by Jorge Bucaran's avatar Jorge Bucaran

test runner should search fish_path for specs instead of *

parent 99ea3a69
#!/usr/bin/env fish
set -l result 0
for test in (find * -type f -print | grep "spec.fish")
for test in (find $fish_path -type f -print | grep "spec.fish")
fish $test $argv
or set result 1
end
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment