fix(core): update

This commit is contained in:
2020-02-14 17:28:13 +00:00
parent a1cb632d26
commit 7a0525bd1f
7 changed files with 51 additions and 6 deletions

View File

@@ -1,8 +1,15 @@
import { expect, tap } from '@pushrocks/tapbundle';
import * as levelcache from '../ts/index';
tap.test('first test', async () => {
console.log('hi');
let testLevelCache: levelcache.LevelCache;
tap.test('should create a new levelcache instance', async () => {
testLevelCache = new levelcache.LevelCache();
expect(testLevelCache).to.be.instanceOf(levelcache.LevelCache);
});
tap.test('should cache a value', async () => {
});
tap.start();