Fix 9 bugs and add 103 tests for core anonymization, config, and routing (#669)

This commit is contained in:
Thomas Durieux
2026-04-15 09:41:00 +02:00
committed by GitHub
parent 261eaa8d79
commit 188066e91d
23 changed files with 2630 additions and 39 deletions
+3 -2
View File
@@ -70,8 +70,9 @@ export default class FileSystem extends StorageBase {
});
}
return await fs.promises.writeFile(fullPath, data, "utf-8");
} catch {
// write error ignored
} catch (err) {
console.error("[ERROR] FileSystem.write failed:", err);
throw err;
}
}