mirror of
https://github.com/denoland/deno.git
synced 2025-10-02 23:24:37 +00:00
fix toString for some web objects (#2040)
This commit is contained in:
parent
5f97c041d9
commit
bb617d2478
8 changed files with 37 additions and 0 deletions
|
@ -166,3 +166,8 @@ test(function formDataParamsArgumentsCheck() {
|
|||
);
|
||||
});
|
||||
});
|
||||
|
||||
test(function toStringShouldBeWebCompatibility() {
|
||||
const formData = new FormData();
|
||||
assertEquals(formData.toString(), "[object FormData]");
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue