Skip to content

Commit

Permalink
really fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
acolytec3 committed Jul 31, 2024
1 parent e301f04 commit 1a38eb2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/client/test/cli/cli.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ describe('[CLI]', () => {
const onData = (message: string, child: ChildProcessWithoutNullStreams, resolve: Function) => {
if (message.includes('Initializing Ethereumjs client')) {
assert.ok(
message.includes('network=Sepolia'),
message.includes('network=sepolia'),
'client is using custom inputs for network and network ID',
)
child.kill(9)
resolve(undefined)
}
}
await clientRunHelper(cliArgs, onData)
}, 30000)
})
it('should successfully start client with custom inputs for PoA network', async () => {
const cliArgs = [
'--rpc',
Expand Down Expand Up @@ -809,4 +809,4 @@ describe('[CLI]', () => {
}
await clientRunHelper(cliArgs, onData, true)
}, 5000)
})
}, 180000)

0 comments on commit 1a38eb2

Please sign in to comment.