We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0224f0c commit 2d1c836Copy full SHA for 2d1c836
test/storageApi.test.ts
@@ -1,10 +1,10 @@
1
-import { StorageApi } from '../src/lib/storage'
+import { StorageBucketApi } from '../src/lib/storage'
2
3
// TODO: need to setup storage-api server for this test
4
const URL = 'http://0.0.0.0:5000'
5
const KEY = 'some.fake.key'
6
7
-const storage = new StorageApi(URL, { Authorization: `Bearer ${KEY}` })
+const storage = new StorageBucketApi(URL, { Authorization: `Bearer ${KEY}` })
8
const newBucketName = `my-new-bucket-${Date.now()}`
9
let createdBucketId = ''
10
0 commit comments