From 4a358b0a281fdf2d5a62011d3329bd8c0ddbfbe7 Mon Sep 17 00:00:00 2001 From: share121 <2854631158@qq.com> Date: Thu, 6 Feb 2025 22:22:58 +0800 Subject: [PATCH] =?UTF-8?q?ci:=20=E4=BC=98=E5=8C=96=E6=B5=8B=E8=AF=95?= =?UTF-8?q?=E6=A1=88=E4=BE=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- main_test.ts | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/main_test.ts b/main_test.ts index d99cfcc..69a9c8c 100644 --- a/main_test.ts +++ b/main_test.ts @@ -26,7 +26,7 @@ Deno.test("Download ISO file test", async () => { ); }); -Deno.test("Download ISO file test", async () => { +Deno.test("Breakpoint continuation test", async () => { const url = "https://mirrors.tuna.tsinghua.edu.cn/debian-cd/12.9.0-live/amd64/iso-hybrid/debian-live-12.9.0-amd64-kde.iso"; const dirpath = "."; @@ -45,6 +45,13 @@ Deno.test("Download ISO file test", async () => { dirpath, threads, startChunk: 700, + endChunk: 1400, + }); + await download({ + url, + dirpath, + threads, + startChunk: 1400, }); console.timeEnd("Download ISO file test");