mirror of
https://github.com/arthurfiorette/axios-cache-interceptor.git
synced 2025-12-08 17:36:16 +00:00
* refactor: better support for different storages * test: updated tests * feat: export AxiosStorage * style: fix linting
7 lines
209 B
TypeScript
7 lines
209 B
TypeScript
import { MemoryAxiosStorage } from '../../src/storage/memory';
|
|
import { testStorage } from './storages';
|
|
|
|
describe('tests common storages', () => {
|
|
testStorage('memory', () => new MemoryAxiosStorage());
|
|
});
|