Add more search tests

This commit is contained in:
Loïc Lecrenier
2023-04-05 11:20:04 +02:00
parent ce328c329d
commit c69cbec64a
5 changed files with 766 additions and 27 deletions

View File

@ -18,5 +18,5 @@ fn test_kanji_language_detection() {
search.query("東京");
let SearchResult { documents_ids, .. } = search.execute().unwrap();
assert_eq!(documents_ids, vec![1]);
insta::assert_snapshot!(format!("{documents_ids:?}"), @"[1]");
}