Skip to content

Commit

Permalink
fix: removed chalk package
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohsen-T committed Feb 23, 2024
1 parent 16318ea commit f4e81dc
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .echidna.test.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
const { execSync } = require('child_process');
const chalk = require('chalk');
const contract = process.argv[2];

const exec = commands => {
Expand All @@ -21,6 +20,6 @@ switch (contract) {
exec(echidnaPath + ' --config echidna.yaml --contract DAO contracts/echidna/DAO.sol');
break;
default:
console.log(chalk.redBright('Invalid contract name. Use Operators, Clusters, or DAO.'));
console.log(chalk.greenBright('npm run echidna <Operators | Clusters | DAO>'));
console.log('Invalid contract name. Use Operators, Clusters, or DAO.');
console.log('npm run echidna <Operators | Clusters | DAO>');
}

0 comments on commit f4e81dc

Please sign in to comment.