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/util.test.js
MatteZ02 5eb0264906 fix
2019-05-30 12:06:47 +03:00

18 lines
566 B
JavaScript

const FormData = require('../../src/node/FormData');
const mime = require('../../src/node/mime');
test('node/FormData behaves predictably', () => {
const f = new FormData();
f.append('hello');
f.append('hello', 'world');
expect(f.length).toBe(77);
f.append('meme', 'dream', 'name');
expect(f.length).toBe(210);
});
test('node/mimes behaves predictably', () => {
expect(mime.lookup('js')).toBe('application/javascript');
expect(mime.lookup('nope')).toBe('application/octet-stream');
expect(mime.buffer([0xFF, 0xD8, 0xFF])).toBe('image/jpeg');
});