feat: summarize completed upload batches

Capture real batch duration and show a dedicated localized completion summary with success, failure, and skipped counts plus a direct action to open failed uploads.
This commit is contained in:
Sucukdeluxe
2026-08-21 01:10:53 +02:00
parent fb544efe2f
commit 04bd4b396c
10 changed files with 153 additions and 0 deletions
+2
View File
@@ -159,6 +159,8 @@ describe('UploadManager', () => {
assert.equal(summary.total, 2);
assert.equal(summary.succeeded, 2);
assert.equal(summary.failed, 0);
assert.equal(Number.isInteger(summary.durationSec), true);
assert.equal(summary.durationSec >= 0, true);
assert.equal(summary.files.length, 2);
});