-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add condition on filtering caching Add multi index search Add datasets in tests assets Improve filters Improve readme Update src/client/instant-meilisearch-client.ts Co-authored-by: Morgane Dubus <[email protected]> fix merge conflicts Remove console logs from client Remove comments Add tests on disjunctive facet search remove console log Update playground Add logging on react setup Improve README Roll back .gitignore Fix readme errors Fix refinement list typo error Fix end to end tests Fix linting error Update selectors in cypress to improve tests Add json module resolver for tests Add a wait in cypress method resolving to fast Remove useless wait in search-ui specs
- Loading branch information
Showing
21 changed files
with
1,441 additions
and
416 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const { MeiliSearch } = require('meilisearch') | ||
|
||
const HOST = 'http://localhost:7700' | ||
const API_KEY = 'masterKey' | ||
|
||
afterAll(async () => { | ||
const client = new MeiliSearch({ host: HOST, apiKey: API_KEY }) | ||
await client.deleteIndex('movies') | ||
const task = await client.deleteIndex('games') | ||
|
||
await client.waitForTask(task.taskUid) | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.