compile to commonjs

This commit is contained in:
Randall Schmidt
2021-07-09 14:36:43 -04:00
parent 998d18ae84
commit 675ed9bbf2
7 changed files with 52 additions and 35 deletions

18
test/tests.cjs Normal file
View File

@ -0,0 +1,18 @@
const assert = require('assert');
const fetch = require('../commonjs/wrapper.cjs');
const TWO_HUNDRED_URL = 'https://httpbin.org/status/200';
describe('Commonjs module tests', function() {
it('Can make a request', async function() {
const res = await fetch(TWO_HUNDRED_URL);
assert.strictEqual(res.status, 200);
});
it('Has expected properties', function() {
assert(typeof fetch === 'function');
assert(fetch.MemoryCache);
assert(fetch.FileSystemCache);
assert(fetch.fetchBuilder);
});
});

View File

@ -476,4 +476,3 @@ describe('File system cache tests', function() {
assert.strictEqual(res.fromCache, true);
});
});
console.log(process.cwd())