We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 647ebff commit fc6b657Copy full SHA for fc6b657
packages/adapter-node/tests/smoke.js
@@ -46,4 +46,18 @@ test('responses with the rendered status code', async () => {
46
server.server.close();
47
});
48
49
+test('passes through umlaut as encoded path', async () => {
50
+ const server = await startServer({
51
+ render: (incoming) => {
52
+ return {
53
+ status: 200,
54
+ body: incoming.path
55
+ };
56
+ }
57
+ });
58
+ const res = await fetch(`http://localhost:${PORT}/%C3%BCber-uns`);
59
+ assert.equal(await res.text(), '/%C3%BCber-uns');
60
+ server.server.close();
61
+});
62
+
63
test.run();
0 commit comments