1
0
mirror of https://github.com/musix-org/musix-oss synced 2024-09-20 14:01:55 +00:00
musix-oss/node_modules/snekfetch/test/node/main.js

27 lines
575 B
JavaScript
Raw Normal View History

2019-05-30 09:06:47 +00:00
const fs = require('fs');
const { Snekfetch, TestRoot } = require('../interop');
require('../main');
test('node/pipe get', (done) => {
Snekfetch.get(`${TestRoot}/get`)
.pipe(fs.createWriteStream('/dev/null'))
.on('finish', done);
});
test('node/FormData json works', () =>
Snekfetch.post(`${TestRoot}/post`)
.attach('object', { a: 1 })
.then((res) => {
const { form } = res.body;
expect(form.object).toBe('{"a":1}');
})
);
test('node/rawsend post', () =>
Snekfetch.post(`${TestRoot}/post`)
.send(Buffer.from('memes')).end()
);