(post, conf, data)
| 75 | }); |
| 76 | |
| 77 | const xhrFunction = async function xhr(post, conf, data) { |
| 78 | return fetch(conf).then(async response => { |
| 79 | return { |
| 80 | finalUrl: response.url, |
| 81 | responseText: await response.text(), |
| 82 | status: response.status, |
| 83 | }; |
| 84 | }); |
| 85 | }; |
| 86 | |
| 87 | describe('Mal Search', function() { |
| 88 | before(function() { |