Scenario Outline: Searching for <text>~<number between 0 and 1> activates fuzzy search # features/fuzzy_api.feature:19 When I api search for ffnonesensewor~<number> # features/step_definitions/search_steps.rb:30 Then Two Words is the first api search result # features/step_definitions/search_steps.rb:312 Examples: | number | | .8 | expected [nil] to include "Two Words" | 0.8 | expected [nil] to include "Two Words" | 1 |
Basically, the ~1 postfix still works as before but using ~.8 or ~0.8 are returning no results when they were expected to return results.
Broken queries: