mirror of
https://git.proxmox.com/git/package-rebuilds
synced 2025-08-22 06:36:36 +00:00
13 lines
256 B
JavaScript
13 lines
256 B
JavaScript
'use strict'
|
|
|
|
const { test } = require('tap')
|
|
const { request } = require('..')
|
|
|
|
test('https://github.com/mcollina/undici/issues/810', async (t) => {
|
|
const { body } = await request('https://api.github.com/user/emails')
|
|
|
|
await body.text()
|
|
|
|
t.end()
|
|
})
|