Skip to content

Commit

Permalink
feat(jest): remove skip for timeout issue on Solana (#3125)
Browse files Browse the repository at this point in the history
  • Loading branch information
drepram committed May 11, 2022
1 parent 8a9c2b3 commit 446ea33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions libraries/Solana/Solana.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ describe('Solana.publicKeyFromSeeds', () => {
})
})

describe.skip('Solana.waitForAccount', () => {
describe('Solana.waitForAccount', () => {
test('0', async () => {
const param1: any = new web3.Connection('http://localhost:8899')
const param2: any = new web3.PublicKey(10)
Expand All @@ -118,7 +118,7 @@ describe.skip('Solana.waitForAccount', () => {
expect(error).toBeInstanceOf(Error)
}
})
test.skip('2', async () => {
test('2', async () => {
const param1: any = {
getAccountInfo: () => {
return undefined
Expand Down

0 comments on commit 446ea33

Please sign in to comment.