custom caching

This commit is contained in:
Randall Schmidt
2021-06-11 11:25:24 -04:00
parent ad256800f8
commit 831440152a
8 changed files with 101 additions and 31 deletions

BIN
test/expected_png.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.9 KiB

View File

@ -5,6 +5,7 @@ const rimraf = require('rimraf');
const path = require('path');
const FetchCache = require('../index.js');
const { URLSearchParams } = require('url');
const MemoryCache = require('../classes/caching/memory_cache.js');
const CACHE_PATH = path.join(__dirname, '..', '.cache');
const expectedPngBuffer = fs.readFileSync(path.join(__dirname, 'expected_png.png'));
@ -28,7 +29,7 @@ function post(body) {
beforeEach(async function() {
rimraf.sync(CACHE_PATH);
fetch = FetchCache(CACHE_PATH);
fetch = FetchCache.withCache(new MemoryCache());
});
describe('Basic property tests', function() {