Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions lib/motion/project/config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,9 @@ def spec_files
files_filter.map! { |x| File.exist?(x) ? File.expand_path(x) : x }
specs.delete_if { |x| [File.expand_path(x), File.basename(x, '.rb'), File.basename(x, '_spec.rb')].none? { |p| files_filter.include?(p) } }
end

App.fail "There are no spec files to run. Place your spec files in your project under the `spec` directory." if specs.empty?

spec_core_files + helpers + specs
end
end
Expand Down