Method: RSpec::Core::Notifications::ProfileNotification#slowest_examples
- Defined in:
- lib/rspec/core/notifications.rb
#slowest_examples ⇒ Array<RSpec::Core::Example>
Returns the slowest examples.
439 440 441 442 443 444 |
# File 'lib/rspec/core/notifications.rb', line 439 def slowest_examples @slowest_examples ||= examples.sort_by do |example| -example.execution_result.run_time end.first(number_of_examples) end |