Matrix: fix verification client lifecycle and quiet CLI noise

This commit is contained in:
Gustavo Madeira Santana
2026-03-09 02:56:02 -04:00
parent a3573ac71f
commit df6b6762c0
12 changed files with 144 additions and 24 deletions

View File

@@ -43,6 +43,12 @@ describe("warning filter", () => {
message: "SQLite is an experimental feature and might change at any time",
}),
).toBe(true);
expect(
shouldIgnoreWarning({
name: "Warning",
message: "`--localstorage-file` was provided without a valid path",
}),
).toBe(true);
});
it("keeps unknown warnings visible", () => {

View File

@@ -23,6 +23,9 @@ export function shouldIgnoreWarning(warning: ProcessWarning): boolean {
) {
return true;
}
if (warning.message?.includes("`--localstorage-file` was provided without a valid path")) {
return true;
}
return false;
}