Skip to content

Commit

Permalink
chore: new CLI
Browse files Browse the repository at this point in the history
  • Loading branch information
Ad96el committed Aug 7, 2023
1 parent 19edbf3 commit 9bd1f5b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ yarn.lock
yarn-error.log

*.js
*.d.ts
*.d.ts
2 changes: 1 addition & 1 deletion src/tests/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export async function startContainer(): Promise<string> {
const image = process.env.TESTCONTAINERS_NODE_IMG || 'kiltprotocol/mashnet-node'
console.log(`using testcontainer with image ${image}`)
const testcontainer = new GenericContainer(image)
.withCommand(['--dev', `--ws-port=${WS_PORT}`, '--ws-external'])
.withCommand(['--dev', `--rpc-port=${WS_PORT}`, '--rpc-external'])
.withExposedPorts(WS_PORT)
.withWaitStrategy(Wait.forLogMessage(`:${WS_PORT}`))
const started = await testcontainer.start()
Expand Down

0 comments on commit 9bd1f5b

Please sign in to comment.