1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-08-26 07:15:36 +02:00

update github action

This commit is contained in:
Thomas Wilkerling
2025-05-23 19:59:20 +02:00
parent 6a08b5bc2c
commit 57a6f8cf1a
8 changed files with 34 additions and 44 deletions

View File

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