make cache get used even if you make a bunch of identical requests immediately

This commit is contained in:
Randall Schmidt
2021-07-05 22:00:12 -04:00
parent 6cd42272c4
commit dae57d2604
5 changed files with 48 additions and 16 deletions

View File

@ -404,6 +404,16 @@ describe('Data tests', function() {
assert(err.message.includes('Unsupported body type'));
}
});
it('Uses cache even if you make multiple requests at the same time', async function() {
const [res1, res2] = await Promise.all([
cachedFetch('http://httpbin.org/status/200'),
cachedFetch('http://httpbin.org/status/200'),
]);
// One should be false, the other should be true
assert(res1.fromCache !== res2.fromCache);
});
}).timeout(10000);
describe('Memory cache tests', function() {
@ -466,3 +476,4 @@ describe('File system cache tests', function() {
assert.strictEqual(res.fromCache, true);
});
});
console.log(process.cwd())