diff options
| author | Peter Lai <alk03073135@gmail.com> | 2023-11-25 16:54:18 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-11-25 09:54:18 +0100 |
| commit | 807b9a1693645270609d4d795aa2b8eeacaae40e (patch) | |
| tree | fc980767550706f3508fe88da046d8da0afc1613 | |
| parent | cbdbbd249239345f88bea031beb55e84c2f47688 (diff) | |
Add missing test in TestJSLibHTTPDownload (#22)
| -rw-r--r-- | js_lib_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js_lib_test.go b/js_lib_test.go index 20e39da..aca8ce9 100644 --- a/js_lib_test.go +++ b/js_lib_test.go @@ -237,6 +237,7 @@ func TestJSLibHTTPDownload(t *testing.T) { require.FileExists(t, "foo.txt") require.FileExists(t, "dir/my-foo.txt") require.FileExists(t, "dir/bar.txt") + require.FileExists(t, "dir/baz.txt") require.FileExists(t, "qux.txt") require.FileExists(t, "hack.txt") require.FileExists(t, "no-dest.txt") |