stadtratmonitor/spec/support/elasticsearch.rb
2020-03-09 11:27:52 +01:00

8 lines
243 B
Ruby

# frozen_string_literal: true
RSpec.configure do |config|
config.before :each, elasticsearch: true do
Paper.__elasticsearch__.create_index!(force: true)
Elasticsearch::Model.client.cluster.health wait_for_status: 'yellow'
end
end