add blob support

This commit is contained in:
Randall Schmidt 2021-06-11 16:40:35 -04:00
parent 2e7c35a34c
commit 49f1c0cdc1

@ -390,11 +390,13 @@ describe('Data tests', function() {
let standardBody = await standardFetchResponse.blob(); let standardBody = await standardFetchResponse.blob();
assert.strictEqual(cachedBody.size, standardBody.size); assert.strictEqual(cachedBody.size, standardBody.size);
assert.strictEqual(cachedBody.type, standardBody.type); assert.strictEqual(cachedBody.type, standardBody.type);
assert.strictEqual(await cachedBody.text(), await standardBody.text());
cachedFetchResponse = await cachedFetch(PNG_BODY_URL); cachedFetchResponse = await cachedFetch(PNG_BODY_URL);
cachedBody = await cachedFetchResponse.blob(); cachedBody = await cachedFetchResponse.blob();
assert.strictEqual(cachedBody.size, standardBody.size); assert.strictEqual(cachedBody.size, standardBody.size);
assert.strictEqual(cachedBody.type, standardBody.type); assert.strictEqual(cachedBody.type, standardBody.type);
assert.strictEqual(await cachedBody.text(), await standardBody.text());
}); });
it('Errors if the body type is not supported', async function() { it('Errors if the body type is not supported', async function() {