DEV: Fix turbo_rspec formatters by sending real 'Start' notification (#26487)
This commit is contained in:
parent
8098876bfa
commit
ff6cb1bc05
|
@ -13,6 +13,7 @@ module TurboTests
|
|||
)
|
||||
|
||||
def start(*args)
|
||||
super(*args)
|
||||
output.puts "::group:: Verbose turbo_spec output" if ENV["GITHUB_ACTIONS"]
|
||||
end
|
||||
|
||||
|
|
|
@ -49,7 +49,7 @@ module TurboTests
|
|||
end
|
||||
|
||||
def start
|
||||
delegate_to_formatters(:start, RSpec::Core::Notifications::NullNotification)
|
||||
delegate_to_formatters(:start, RSpec::Core::Notifications::StartNotification.new)
|
||||
end
|
||||
|
||||
def example_passed(example)
|
||||
|
|
Loading…
Reference in New Issue