fix(core): update
This commit is contained in:
12
test/test.ts
12
test/test.ts
@ -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();
|
||||
|
Reference in New Issue
Block a user