remove comments

This commit is contained in:
Jorrin 2024-03-31 15:57:26 +02:00
parent d1d7f5cf72
commit dcfab4bd80
1 changed files with 16 additions and 16 deletions

View File

@ -128,21 +128,21 @@ describe('makeSimpleProxyFetcher()', () => {
}, },
outputBody: 'hello world', outputBody: 'hello world',
}); });
// setResult("json", { hello: 42 }); setResult('json', { hello: 42 });
// expectFetchCall({ expectFetchCall({
// inputUrl: "https://google.com/", inputUrl: 'https://google.com/',
// input: { input: {
// method: "POST", method: 'POST',
// query: {}, query: {},
// readHeaders: [], readHeaders: [],
// headers: {}, headers: {},
// }, },
// outputUrl: `https://example.com/proxy?destination=${encodeURIComponent('https://google.com/')}`, outputUrl: `https://example.com/proxy?destination=${encodeURIComponent('https://google.com/')}`,
// output: { output: {
// method: "POST", method: 'POST',
// headers: {}, headers: {},
// }, },
// outputBody: { hello: 42 } outputBody: { hello: 42 },
// }) });
}); });
}); });