Skip to content

Commit

Permalink
Fix: Fix mispelling on block-time
Browse files Browse the repository at this point in the history
  • Loading branch information
ajimeno04 committed Aug 15, 2024
1 parent 8ac5a82 commit f6a8e0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/config/jest.setup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import { generateConfig } from './config';

async function startAnvil(port: string, chainId: string, pids: string[]): Promise<void> {
return new Promise((resolve, reject) => {
const anvil = spawn('anvil', ['--port', port, '--chain-id', chainId, '--blocktime', '2'], { stdio: 'inherit' });
const anvil = spawn('anvil', ['--port', port, '--chain-id', chainId, '--block-time', '2'], { stdio: 'inherit' });

if (anvil.pid) {
pids.push(anvil.pid.toString());
Expand Down

0 comments on commit f6a8e0c

Please sign in to comment.