fix(core): update

This commit is contained in:
2020-09-19 15:06:27 +00:00
parent 995ae20502
commit b00db37bf4
2 changed files with 4 additions and 5 deletions

View File

@ -11,10 +11,6 @@ tap.test('first test', async () => {
expect(testWebstore).to.be.instanceOf(webstore.WebStore);
});
tap.test('should init the database', async () => {
await testWebstore.init();
});
tap.test('should allow storing a string', async () => {
await testWebstore.set('mystring', 'heythere');
expect(await testWebstore.get('mystring')).to.equal('heythere');