You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dug through the code. Found :chdir as a potential option. No luck. It still force-appends the spec dir at the end of the rspec command as if I always want to run the entire spec directory.
Yeah, I sometimes don't want to use focus: true because, well, it has to load the entire test suite anyway, and that adds like 5-10 seconds every run even with spring. I just want to run rspec spec/somedir over and over in guard. That would be sweet.
Even something like:
guard :rspec, cmd: 'bin/rspec', dirs: ARGV
or something like that would be awesome.
The text was updated successfully, but these errors were encountered:
I'm also searching about the best way to run guard for models only or features only or all!!
I think we will add tasks for that in the Guardfile but still search about the best way
Dug through the code. Found
:chdir
as a potential option. No luck. It still force-appends thespec
dir at the end of the rspec command as if I always want to run the entire spec directory.Yeah, I sometimes don't want to use
focus: true
because, well, it has to load the entire test suite anyway, and that adds like 5-10 seconds every run even with spring. I just want to runrspec spec/somedir
over and over in guard. That would be sweet.Even something like:
or something like that would be awesome.
The text was updated successfully, but these errors were encountered: