From 98269da386c23e8bb6562ed64edba62e46a4cdc0 Mon Sep 17 00:00:00 2001 From: Brooke Kuhlmann Date: Tue, 9 Sep 2025 13:04:57 -0600 Subject: [PATCH] Updated RSpec seed configuration Necessary to ensure repeatable sequences of pseudo-random numbers between different runs of the test suite is used for the seed. This improves the ability to reliable rerun specs by using a more deterministic seed value. Milestone: patch --- spec/spec_helper.rb | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spec/spec_helper.rb b/spec/spec_helper.rb index 5ab2516..26ab176 100644 --- a/spec/spec_helper.rb +++ b/spec/spec_helper.rb @@ -49,4 +49,6 @@ RSpec.configure do |config| end config.before(:suite) { Dry::Monads.load_extensions :rspec } + + Kernel.srand config.seed end