mirror of
https://github.com/openfoodfoundation/openfoodnetwork
synced 2026-02-13 23:37:47 +00:00
Many report specs are still testing the old behaviour. We need to migrate them to background reports. Some tests may be better as unit tests instead of system tests.
8 lines
158 B
Ruby
8 lines
158 B
Ruby
# frozen_string_literal: true
|
|
|
|
class EnableFeatureBackroundReports < ActiveRecord::Migration[7.0]
|
|
def up
|
|
Flipper.enable("background_reports")
|
|
end
|
|
end
|