Commit c004cb57 authored by Bruno's avatar Bruno

Merge pull request #338 from bucaran/fix-run-tests

test runner should search fish_path for specs instead of *
parents 99ea3a69 4f9a291a
#!/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