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 7dee7a69de
commit 804dff49ad
12 changed files with 143 additions and 24 deletions

View File

@@ -42,6 +42,11 @@ describe("warning filter", () => {
name: "ExperimentalWarning",
message: "SQLite is an experimental feature and might change at any time",
},
}),
{
name: "Warning",
message: "`--localstorage-file` was provided without a valid path",
},
];
for (const warning of ignoredWarnings) {

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;
}