Skip to content

Commit d57c749

Browse files
committed
build: undo debug logging
1 parent d2a2d9a commit d57c749

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/common-deploy-steps.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@ export const addDeployTestSteps = ({
1717

1818
const contractSrcBasePath = (framework === 'hardhat' ? 'contracts' : 'src')
1919

20-
const cli_deploy = (args: string[]) => {
21-
return cli('deploy', 'local', ...args, { cwd, verbose: true })
20+
const cli_deploy = (args: string[], opts: { verbose?: boolean } = {}) => {
21+
return cli('deploy', 'local', ...args, { cwd, verbose: opts.verbose })
2222
}
2323

2424
describe('deploys the project', () => {
@@ -350,7 +350,7 @@ export const addDeployTestSteps = ({
350350
})
351351

352352
it('and everything gets deployed', async () => {
353-
expect(cli('build', { cwd, verbose: true }).success).to.be.true
353+
expect(cli('build', { cwd, verbose: false }).success).to.be.true
354354

355355
const wallet = await loadWallet(join(cwd, 'gemforge.config.cjs'), 'local', 'wallet_key')
356356
const startingBal = (await wallet.provider!.getBalance(wallet.address)).toString()

0 commit comments

Comments
 (0)