memory-card
Version:
ES6 Map like Async API, with Swagger API Backend Support.
14 lines • 557 B
JavaScript
import { test } from 'tstest';
import { MemoryCard, } from '../src/memory-card.js';
test('integrate testing', async (t) => {
const card = new MemoryCard();
await card.load();
t.equal(await card.size, 0, 'init with 0');
await card.set('a', 'b');
t.equal(await card.size, 1, 'size with 1');
t.equal(await card.get('a'), 'b', 'get key a with value b');
await card.clear();
t.equal(await card.size, 0, 'clear reset to 0');
});
//# sourceMappingURL=memory-card.spec.js.map