Replace request activity feed with simple current progress
Magent CI/CD / verify (push) Successful in 1m57s
Magent CI/CD / deploy-prod (push) Skipped
Magent CI/CD / deploy-beta (push) Skipped

This commit is contained in:
2026-09-11 23:06:14 +12:00
parent 835d9c8de3
commit 8734f461bb
3 changed files with 49 additions and 24 deletions
+3 -1
View File
@@ -47,7 +47,9 @@ const base = process.env.REVIEW_BASE || 'http://localhost:3114';
assert.equal(writes.length, before);
page.once('dialog', dialog => dialog.accept());
await picker.getByRole('button', { name: 'Download outside profile' }).click();
await page.getByText('Selected release sent to Sonarr.', { exact: true }).first().waitFor();
await page.getByRole('dialog', { name: 'Done', exact: true }).getByText('Your download has been sent.', { exact: true }).waitFor();
assert.equal(await page.locator('.activity-dialog-events').count(), 0);
assert.equal(await page.getByRole('dialog', { name: 'Done', exact: true }).getByRole('progressbar').getAttribute('aria-valuenow'), '100');
assert.equal(writes.at(-1).ignoreProfileLimits, true);
assert.equal(writes.at(-1).selectionToken, 'signed-fixture');
}