compile to commonjs
This commit is contained in:
18
test/tests.cjs
Normal file
18
test/tests.cjs
Normal 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);
|
||||
});
|
||||
});
|
@ -476,4 +476,3 @@ describe('File system cache tests', function() {
|
||||
assert.strictEqual(res.fromCache, true);
|
||||
});
|
||||
});
|
||||
console.log(process.cwd())
|
Reference in New Issue
Block a user