Skip to content

Commit

Permalink
skip pro tests
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorjdawson committed Jul 16, 2019
1 parent 766dded commit eced856
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/address.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ test('throws exception when calling getStats without hash', async t => {
})

/*********** Test getAdoption() ***********/
test('Successfully gets address adoption', async t => {
test.skip('Successfully gets address adoption', async t => {
let response = await t.context.web3data.address.getAdoption(ADDRESS)
t.is(response.status, 200)
})
Expand Down Expand Up @@ -133,12 +133,12 @@ test('throws exception when calling getTokenBalances without hash', async t => {
})

/*********** Test getUsage() ***********/
test('Successfully gets address usage', async t => {
test.skip('Successfully gets address usage', async t => {
let response = await t.context.web3data.address.getUsage(ADDRESS)
t.is(response.status, 200)
})
test('throws exception when calling getUsage without hash', async t => {
await t.throwsAsync(async () => {
await t.context.web3data.address.getUsage()
}, { instanceOf: Error, message: NO_ADDRESS })
})
})

0 comments on commit eced856

Please sign in to comment.