Skip to content

Commit

Permalink
chore: format
Browse files Browse the repository at this point in the history
  • Loading branch information
alanshaw committed Nov 12, 2024
1 parent 695322a commit f740119
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion packages/cli/test/bin.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -565,7 +565,7 @@ export const testSpace = {
})

// wait 1 second so we don't get a cached receipt
await new Promise(resolve => setTimeout(resolve, 1000))
await new Promise((resolve) => setTimeout(resolve, 1000))

const infoWithProvider = await storacha
.args(['space', 'info'])
Expand Down
6 changes: 3 additions & 3 deletions packages/w3up-client/test/client.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const testClient = {
const dataCID = await alice.uploadFile(file, {
onShardStored: (meta) => {
carCID = meta.cid
}
},
})

assert.deepEqual(await uploadTable.exists(space.did(), dataCID), {
Expand Down Expand Up @@ -126,7 +126,7 @@ export const testClient = {
const dataCID = await alice.uploadDirectory(files, {
onShardStored: (meta) => {
carCID = meta.cid
}
},
})

assert.deepEqual(await uploadTable.exists(space.did(), dataCID), {
Expand Down Expand Up @@ -169,7 +169,7 @@ export const testClient = {
const root = await alice.uploadCAR(car, {
onShardStored: (meta) => {
carCID = meta.cid
}
},
})

assert.deepEqual(await uploadTable.exists(space.did(), root), {
Expand Down
2 changes: 1 addition & 1 deletion packages/w3up-client/test/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export const setup = async () => {
upload: context.connection,
filecoin: context.connection,
},
receiptsEndpoint: new URL(receiptsEndpoint)
receiptsEndpoint: new URL(receiptsEndpoint),
})

return {
Expand Down

0 comments on commit f740119

Please sign in to comment.