# File lib/selenium/rspec/reporting/selenium_test_report_formatter.rb, line 28 28: def start(example_count) 29: super 30: # ensure there's at least 1 example group header (normally 0 with deep_test) 31: # prevents js and html validity errors 32: example_group = Object.new 33: def example_group.description; ""; end 34: example_group_started example_group 35: end