We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a0b123b commit 294eeb5Copy full SHA for 294eeb5
spec/meilisearch/index/settings_spec.rb
@@ -757,13 +757,16 @@
757
end
758
759
it '#update_search_cutoff_ms updates faceting' do
760
- index.update_search_cutoff_ms(800)
+ update_task = index.update_search_cutoff_ms(800)
761
+ client.wait_for_task(update_task['taskUid'])
762
763
expect(index.search_cutoff_ms).to eq(800)
764
765
766
it '#reset_search_cutoff_ms resets search cutoff ms' do
- index.update_search_cutoff_ms(300)
767
+ update_task = index.update_search_cutoff_ms(300)
768
769
+
770
expect(index.search_cutoff_ms).to eq(300)
771
772
reset_task = index.reset_search_cutoff_ms
0 commit comments