test: chore: prettify

This commit is contained in:
vorotamoroz
2026-05-22 03:20:28 +00:00
parent c1f41910c4
commit 5fd85c71ca
2 changed files with 16 additions and 10 deletions
+6 -2
View File
@@ -171,7 +171,11 @@ async function main(): Promise<void> {
for (const sample of sampleFiles) {
const pulledPath = workDir.join(`pulled-${sample.relativePath.replaceAll("/", "_")}`);
await runCliOrFail(clientVault, "--settings", clientSettings, "pull", sample.relativePath, pulledPath);
await assertFilesEqual(sample.absolutePath, pulledPath, `sample file mismatch after sync: ${sample.relativePath}`);
await assertFilesEqual(
sample.absolutePath,
pulledPath,
`sample file mismatch after sync: ${sample.relativePath}`
);
}
const result = {
@@ -216,4 +220,4 @@ if (import.meta.main) {
console.error(`[Fatal Error]`, error);
Deno.exit(1);
});
}
}