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 7188f3b commit b8b4742Copy full SHA for b8b4742
tests/base.test.js
@@ -2,5 +2,7 @@ import instantMeiliSearch from '../src/index'
2
3
test('Should test if instantMeiliSearch Client is created correctly', () => {
4
const client = instantMeiliSearch('http://localhost:7700', 'masterKey')
5
- expect(client.attributesToHighlight).toBe('*')
+ expect(client.hitsPerPage).toBe(10)
6
+ expect(client.limitPerRequest).toBe(50)
7
+ expect(client.attributesToHighlight[0]).toBe('*')
8
})
0 commit comments