-
Notifications
You must be signed in to change notification settings - Fork 71
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add integration test step in circle CI config
- Loading branch information
Marccio Silva
committed
Jul 30, 2021
1 parent
45c06c4
commit 6c170b7
Showing
5 changed files
with
29 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
const fs = require('fs'); | ||
module.exports = { | ||
mainchain: require('./development.json'), //the json containing the smart contract addresses in rsk | ||
sidechain: require('./mirrorDevelopment.json'), //the json containing the smart contract addresses in eth | ||
runEvery: 2, // In minutes, | ||
confirmations: 0, // Number of blocks before processing it, if working with ganache set as 0 | ||
privateKey: fs.readFileSync(`${__dirname}/test.local.federator.key`, 'utf8'), | ||
storagePath: './db', | ||
etherscanApiKey: '', | ||
runHeartbeatEvery: 1, // In hours | ||
endpointsPort: 5000, // Server port | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters