This commit is contained in:
Lukian LEIZOUR 2022-11-26 15:56:34 +01:00
parent 70e2f7a8aa
commit 008d2f30d7
675 changed files with 189892 additions and 0 deletions

63
node_modules/xhr-response/test.js generated vendored Normal file
View file

@ -0,0 +1,63 @@
describe('xhr-response', function () {
'use strict';
var assume = require('assume')
, response = require('./');
it('is exported as a function', function () {
assume(response).is.a('function');
});
it('defaults to the `reponse` property when available', function () {
var wat = response({
response: 'wat',
responseText: 'lol'
});
assume(wat).equals('wat');
});
it('does not access the `responseText` for `blob` types', function () {
var wat = response({
responseText: 'lol',
responseType: 'blob'
});
assume(wat).is.a('undefined');
});
it('does not access the `responseText` during load for moz-chunked-* calls', function () {
var wat = response({
responseText: 'lol',
responseType: 'moz-chunked-text',
readyState: 4
});
assume(wat).is.a('undefined');
wat = response({
responseText: 'lol',
responseType: 'moz-chunked-text',
readyState: 3
});
assume(wat).equals('lol');
wat = response({
responseText: 'lol',
responseType: 'moz-chunked-arraybuffer',
readyState: 4
});
assume(wat).is.a('undefined');
});
it('returns the responseXML if there is no text', function () {
var wat = response({
responseText: '',
responseXML: '<xml>'
});
assume(wat).equals('<xml>');
});
});