mirror of
https://github.com/denoland/deno
synced 2024-11-05 18:45:24 +00:00
92f6188253
This PR: 1. Replaces `@test_util/std`-prefixed imports with `@std`. 2. Adds `@std/` import map entries to a few `deno.json` files.
51 lines
947 B
TypeScript
51 lines
947 B
TypeScript
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
|
import { assertEquals } from "@std/assert/mod.ts";
|
|
import { parse, stringify } from "node:querystring";
|
|
|
|
Deno.test({
|
|
name: "stringify",
|
|
fn() {
|
|
assertEquals(
|
|
stringify({
|
|
a: "hello",
|
|
b: 5,
|
|
c: true,
|
|
d: ["foo", "bar"],
|
|
}),
|
|
"a=hello&b=5&c=true&d=foo&d=bar",
|
|
);
|
|
},
|
|
});
|
|
|
|
Deno.test({
|
|
name: "parse",
|
|
fn() {
|
|
assertEquals(parse("a=hello&b=5&c=true&d=foo&d=bar"), {
|
|
a: "hello",
|
|
b: "5",
|
|
c: "true",
|
|
d: ["foo", "bar"],
|
|
});
|
|
},
|
|
});
|
|
|
|
// https://github.com/denoland/deno/issues/21734
|
|
Deno.test({
|
|
name: "stringify options no encode",
|
|
fn() {
|
|
assertEquals(
|
|
stringify(
|
|
{
|
|
a: "hello",
|
|
b: 5,
|
|
c: true,
|
|
d: ["foo", "bar"],
|
|
},
|
|
"&",
|
|
"=",
|
|
{},
|
|
),
|
|
"a=hello&b=5&c=true&d=foo&d=bar",
|
|
);
|
|
},
|
|
});
|