UNPKG

thenavisapp

Version:

This project was bootstrapped with [Create React App](https://github.com/facebook/create-react-app).

20 lines (15 loc) 502 B
import {Buffer} from 'node:buffer'; import test from 'ava'; import withServer from './helpers/with-server.js'; test('encoding works with json', withServer, async (t, server, got) => { const json = {data: 'é'}; server.get('/', (_request, response) => { response.set('Content-Type', 'application-json'); response.send(Buffer.from(JSON.stringify(json), 'latin1')); }); const response = await got('', { encoding: 'latin1', responseType: 'json', }); t.deepEqual(response.body, json); });