Matthieu Dumont

Results 27 comments of Matthieu Dumont

Basically, I think the idea here is that it doesn't make sense to reset the page when done before the `search.start()` of `instantsearch.js`, because there, we're initializing with the same...

Getting bit in my hack inside the `searchFunction` is definitely OK, the surpising part is really inside an `init` function of a custom widget.

It isn't, we're now using an array of refinements by operator ( https://github.com/algolia/algoliasearch-helper-js/blob/d3bf223fcfe9da6a4a47c2349d758d402d67729a/dist/algoliasearch.helper.js#L8177 ) and all the other ones use the value to know which one to add/remove, so I...

Here is a solution we've used. Our use case is for e2e tests that we want to run in parallel. All of them are defined in the same suite. ```go...

I've opened a PR to try to allow `Test...` methods to receive their own `t` as a parameter: https://github.com/stretchr/testify/pull/1322 that partially allows to run suite tests in parallel. This is...

Hi @HurricanePete . Thanks for raising the issue. The reason for this character limit is that Algolia has a size limit for records. It used to be 100KB, but changed...

If you're able to do the indexing on your part, by all means feel free to. The requirement is to match the extracted JSON our system indexes. What I'm not...

It makes sense. You are correct that the integration doesn't support this at this point in time. We're open to Pull Requests, so if you want to take our code...

I also got bitten by `setQueryParameter`'s `setPage(0)`. I used an init widget only to change the `highlight{Pre,Post}Tag` s and couldn't understand why it was failing. In my case, I guess...