Skip to content

Commit

Permalink
uncomment the sleep function
Browse files Browse the repository at this point in the history
  • Loading branch information
0x3bfc committed Oct 21, 2020
1 parent 5047347 commit bdd1483
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions test/unit/balancer/Balancer.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ import OceanSPool from '@oceanprotocol/contracts/artifacts/BPool.json'
import { LoggerInstance } from '../../../src/utils'
const web3 = new Web3('http://127.0.0.1:8545')

// function sleep(ms: number) {
// return new Promise((resolve) => {
// setTimeout(resolve, ms)
// })
// }
function sleep(ms: number) {
return new Promise((resolve) => {
setTimeout(resolve, ms)
})
}

describe('Balancer flow', () => {
let oceanTokenAddress: string
Expand Down

0 comments on commit bdd1483

Please sign in to comment.