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
{{ message }}
This repository was archived by the owner on Nov 30, 2024. It is now read-only.
# spec_helper.rbRSpec.configuredo |config|
config.order_strategy=lambda{
...
}endmoduleRSpecmoduleCore# @privatemoduleExtensions# @private# Used to extend lists of examples and groups to support ordering# strategies like randomization.moduleOrdered# @privatedeforderedifRSpec.configuration.randomize?Kernel.srandRSpec.configuration.seedsort_by{Kernel.randsize}elsif !RSpec.configuration.order_strategy.nil?sort_by{RSpec.configuration.order_stategy}elseselfendendendendendend
It would be nice if I could define what order my specs are run to maximize the feedback loop (e.g., more important spec runs first)