-
-
Notifications
You must be signed in to change notification settings - Fork 936
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix encoding with json
responseType
(#1996)
- Loading branch information
1 parent
dbbd317
commit 0703318
Showing
2 changed files
with
20 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
import {Buffer} from '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); | ||
}); |