lib/decidim/dev/test/rspec_support/timezone.rb



# frozen_string_literal: true

RSpec.configure do |config|
  config.around :example, :tz do |example|
    Time.use_zone(example.metadata[:tz]) { example.run }
  end
end