Skip to content

Commit

Permalink
indexer-cli: add type annotation for test util network specification
Browse files Browse the repository at this point in the history
  • Loading branch information
dwerner committed Jul 8, 2024
1 parent 4ff3265 commit 924c011
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/indexer-cli/src/__tests__/util.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,8 @@ let sockets: Socket[] = []
let metrics: Metrics

const yamlObj = loadTestYamlConfig()
const testNetworkSpecification = specification.NetworkSpecification.parse(yamlObj)
const testNetworkSpecification: specification.NetworkSpecification =
specification.NetworkSpecification.parse(yamlObj)

export const setupMultiNetworks = async () => {
return await setup(true)
Expand Down

0 comments on commit 924c011

Please sign in to comment.