Skip to content

Commit

Permalink
chore: undo unintended test changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed May 5, 2021
1 parent 407ec0f commit b1dfd93
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions client/test/lib.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ describe('client', () => {
})
})

describe.only('store', async () => {
describe('store', async () => {
it('requires name', async () => {
const client = new NFTStorage({ token, endpoint })
try {
Expand Down Expand Up @@ -231,7 +231,7 @@ describe('client', () => {
assert.equal(embed.description, 'stuff')
assert.ok(embed.image instanceof URL)
assert.ok(embed.image.protocol, 'https:')
}).timeout(5000)
})

it('store with properties', async () => {
const client = new NFTStorage({ token, endpoint })
Expand All @@ -252,7 +252,6 @@ describe('client', () => {
})

assert.ok(result instanceof Token)
console.log(result)

const cid = CID.parse(result.ipnft)
assert.equal(cid.version, 1)
Expand Down Expand Up @@ -297,7 +296,7 @@ describe('client', () => {
assert.ok(b2 instanceof URL)
assert.equal(b2.protocol, 'https:')
assert.equal(b2.host, DWEB_LINK)
}).timeout(9000)
})
})

describe('status', () => {
Expand Down

0 comments on commit b1dfd93

Please sign in to comment.