### Improved

- Database fetching (a.k.a. Reset Synchronisation on This Device) on the initialisation now supports streaming and is faster (CouchDB only)
- The database fetching process has been streamlined, and database operations are now suspended until it has been completed
- The initial synchronisation process has been simplified, making it easier to synchronise files with the remote server
- We can select the remote database to fetch from during the initialisation, when there are multiple remote databases configured (e.g. multiple CouchDBs or S3 remotes)
This commit is contained in:
vorotamoroz
2026-06-02 12:34:46 +01:00
parent 0e6dd300ef
commit 7d2ba1b0b9
8 changed files with 749 additions and 92 deletions
+9 -3
View File
@@ -11,17 +11,23 @@ export default mergeConfig(
},
},
test: {
logHeapUsage: true,
// maxConcurrency: 2,
name: "unit-tests",
include: ["**/*unit.test.ts", "**/*.unit.spec.ts"],
exclude: ["test/**"],
exclude: ["test/**", "src/apps/**"],
coverage: {
include: ["src/**/*.ts"],
exclude: [
"**/*.test.ts",
"**/*unit.test.ts",
"**/*.unit.spec.ts",
"test/**",
"src/lib/**/*.test.ts",
"**/_*",
"src/lib/apps",
"src/lib/src/cli",
"src/apps/**",
// "src/cli/**",
"src/lib/src/cli/**",
"**/*_obsolete.ts",
...importOnlyFiles,
],