2021-09-30 12:25:57 -05:00
|
|
|
import * as assert from 'assert';
|
2022-02-26 20:07:39 -06:00
|
|
|
import { query } from '../../src/prelude/url.js';
|
2021-09-30 12:25:57 -05:00
|
|
|
|
|
|
|
describe('url', () => {
|
|
|
|
it('query', () => {
|
|
|
|
const s = query({
|
|
|
|
foo: 'ふぅ',
|
|
|
|
bar: 'b a r',
|
|
|
|
baz: undefined
|
|
|
|
});
|
|
|
|
assert.deepStrictEqual(s, 'foo=%E3%81%B5%E3%81%85&bar=b%20a%20r');
|
|
|
|
});
|
|
|
|
});
|