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
I've noticed a weird problem where whenever I add any formatter in my spec_helper, RSpec output gets sent to the window Spork is running in instead of the window I initiate tests from. It doesn't matter if I add the formatter in the prefork block, the each_run block, or both. It happens even when I add the default formatter! ("progress") For example, when I do this in my spec_helper.rb:
The output is fine if I don't add any formatters, and anything that prints to STDOUT from my tests or code also show up in the correct window. I have a feeling that it has something to do with IO objects being cached or something... is adding formatters just not supported?
The text was updated successfully, but these errors were encountered:
I've noticed a weird problem where whenever I add any formatter in my
spec_helper
, RSpec output gets sent to the window Spork is running in instead of the window I initiate tests from. It doesn't matter if I add the formatter in theprefork
block, theeach_run
block, or both. It happens even when I add the default formatter! ("progress") For example, when I do this in myspec_helper.rb
:The output is fine if I don't add any formatters, and anything that prints to
STDOUT
from my tests or code also show up in the correct window. I have a feeling that it has something to do with IO objects being cached or something... is adding formatters just not supported?The text was updated successfully, but these errors were encountered: