Skip to content

Commit

Permalink
added NUMBER_OF_ADMIN_WALLET_ACCOUNTS to test.env
Browse files Browse the repository at this point in the history
  • Loading branch information
StanislavShevchenko committed Jan 17, 2020
1 parent 13c66bd commit 9f4cb16
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .env.test
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ ALLOW_FACE_RECO_DUPS=false
NEW_RELIC_LICENSE_KEY=ab380edbf4e6210529f4aa2513445e7f75672594
JWT_PASS=G00DDAPP
WEB3_SITE_URL=https://w3.gooddollar.org
ENABLE_MONGO_LOCK=false
FUSE_API=https://explorer.fuse.io
TWILIO_AUTH_ID=
TWILIO_AUTH_TOKEN=
Expand All @@ -42,3 +41,4 @@ MARKET_PASSWORD=markettokenmarkettokenmarkettoke
SECURE_KEY=d41d8cd98f00b204e9800998ecf8427e
ENABLE_MONGO_LOCK=false
MONGO_DB_URI=mongodb+srv://gooddollar:nN0oCoatunBLWSxw@cluster0-h5vxm.mongodb.net/gooddollar-test4?retryWrites=true&w=majority
NUMBER_OF_ADMIN_WALLET_ACCOUNTS=1
2 changes: 1 addition & 1 deletion src/server/blockchain/__tests__/adminWallet.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ describe('adminwallet', () => {
for (let i = 0; i < 5; i++) {
const unverifiedAddress = generateWalletAddress()
// console.log('unverifiedAddress', unverifiedAddress)
promises.push(AdminWallet.topWallet(unverifiedAddress, null, true))
promises.push(AdminWallet.topWallet(unverifiedAddress))
}
const res = await Promise.all(promises).catch(_ => false)
expect(res).toBeTruthy()
Expand Down

0 comments on commit 9f4cb16

Please sign in to comment.