frzn.dev/test/test_helper.rb
floppydiskette 8a288c09b9
Add base app
2024-08-06 19:40:06 +01:00

12 lines
322 B
Ruby

ENV["RAILS_ENV"] ||= "test"
require_relative "../config/environment"
require "rails/test_help"
module ActiveSupport
class TestCase
# Run tests in parallel with specified workers
parallelize(workers: :number_of_processors, with: :threads)
# Add more helper methods to be used by all tests here...
end
end