1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-08-25 06:52:06 +02:00

support highlighting on resolver

This commit is contained in:
Thomas Wilkerling
2025-05-23 11:18:13 +02:00
parent 809119b492
commit db56fa1070
69 changed files with 5761 additions and 5038 deletions

View File

@@ -10,11 +10,12 @@ const build_compact = env && env.includes(".compact");
const build_esm = !env || env.startsWith("module");
const Charset = _Charset || (await import("../src/charset.js")).default;
import Redis from "flexsearch/db/redis";
import Redis_src from "../src/db/redis/index.js";
import Redis_dist from "../dist/module/db/redis/index.js";
import tests from "./persistent.js";
if(!build_light && !build_compact){
describe("Persistent: Redis", function(){
tests(Redis, "Redis");
tests(env ? Redis_dist : Redis_src, "Redis");
});
}