1
0

Display device name w/ download instructions
All checks were successful
Build & Test WASM / build-and-test (push) Successful in 1m43s

This commit is contained in:
2026-03-16 22:32:33 +01:00
parent 18a1db3161
commit d8410d6f14
3 changed files with 6 additions and 2 deletions

View File

@@ -128,6 +128,7 @@ test('full manual mode patching pipeline', async ({ page }) => {
}
await expect(page.locator('#build-status')).toContainText('Patching complete');
await expect(page.locator('#build-status')).toContainText('Kobo Libra Colour');
// Step 8: Download KoboRoot.tgz and verify checksums.
const [download] = await Promise.all([
@@ -136,6 +137,8 @@ test('full manual mode patching pipeline', async ({ page }) => {
]);
expect(download.suggestedFilename()).toBe('KoboRoot.tgz');
await expect(page.locator('#download-device-name')).toHaveText('Kobo Libra Colour');
const downloadPath = await download.path();
const tgzData = fs.readFileSync(downloadPath);