lib/pbt/check/configuration.rb in pbt-0.1.0 vs lib/pbt/check/configuration.rb in pbt-0.1.1

- old
+ new

@@ -10,16 +10,16 @@ :seed, :thread_report_on_exception, keyword_init: true ) do # @param verbose [Boolean] Whether to print verbose output. Default is `false`. - # @param worker [Symbol] The concurrency method to use. :ractor`, `:thread`, `:process` and `:none` are supported. Default is `:ractor`. + # @param worker [Symbol] The concurrency method to use. :ractor`, `:thread`, `:process` and `:none` are supported. Default is `:none`. # @param num_runs [Integer] The number of runs to perform. Default is `100`. # @param seed [Integer] The seed to use for random number generation. It's useful to reproduce failed test with the seed you'd pick up from failure messages. Default is a random seed. # @param thread_report_on_exception [Boolean] Whether to report exceptions in threads. It's useful to suppress error logs on Ractor that reports many errors. Default is `false`. def initialize( verbose: false, - worker: :ractor, + worker: :none, num_runs: 100, seed: Random.new.seed, thread_report_on_exception: false ) super