fix(core): update

This commit is contained in:
2019-10-16 15:21:02 +02:00
parent c4374da42a
commit 3456459456
7 changed files with 130 additions and 5 deletions

View File

@ -31,7 +31,17 @@ tap.test('should get a bucket', async () => {
});
tap.test('should store data in bucket', async () => {
myBucket.store
await myBucket.store('hithere/socool.txt', 'hi there!');
});
tap.test('should get data in bucket', async () => {
const fileString = await myBucket.get('hithere/socool.txt');
console.log(fileString);
});
tap.test('should delete data in bucket', async () => {
await myBucket.remove('hithere/socool.txt');
});
tap.start();