@expressen/tallahassee
Advanced tools
Comparing version 14.10.0 to 14.10.1
@@ -20,5 +20,8 @@ import { FormData as NodeFetchFormData } from "node-fetch"; | ||
continue; | ||
case "file": | ||
this.append(elm.name, elm.files[0], elm.files[0].name); | ||
case "file": { | ||
for (const file of elm.files) { | ||
this.append(elm.name, file, file?.name || "blob"); | ||
} | ||
continue; | ||
} | ||
case "select-multiple": { | ||
@@ -25,0 +28,0 @@ for (const option of elm.selectedOptions) { |
{ | ||
"name": "@expressen/tallahassee", | ||
"version": "14.10.0", | ||
"version": "14.10.1", | ||
"description": "Lightweight client testing framework", | ||
@@ -5,0 +5,0 @@ "type": "module", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
123535
3767
428