Sharkey/packages/backend/test/prelude/url.ts

19 lines
410 B
TypeScript
Raw Normal View History

/*
* SPDX-FileCopyrightText: syuilo and other misskey contributors
* SPDX-License-Identifier: AGPL-3.0-only
*/
2021-09-30 20:25:57 +03:00
import * as assert from 'assert';
2022-09-17 21:27:08 +03:00
import { query } from '../../src/misc/prelude/url.js';
2021-09-30 20:25:57 +03:00
describe('url', () => {
2023-02-02 11:18:25 +02:00
test('query', () => {
2021-09-30 20:25:57 +03:00
const s = query({
foo: 'ふぅ',
bar: 'b a r',
2022-05-21 16:21:41 +03:00
baz: undefined,
2021-09-30 20:25:57 +03:00
});
assert.deepStrictEqual(s, 'foo=%E3%81%B5%E3%81%85&bar=b%20a%20r');
});
});