Skip to content

Commit

Permalink
remove logs and fix test param
Browse files Browse the repository at this point in the history
  • Loading branch information
mouseless-eth committed May 25, 2024
1 parent c1898cc commit a6de5bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion test/kinto-e2e/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ const main = async () => {

for (const opEvent of userOperationEvents.reverse()) {
// only capture the latest 100 successful ops
if (opInfos.length === 1) {
if (opInfos.length === 100) {
break
}

Expand Down
4 changes: 2 additions & 2 deletions test/kinto-e2e/src/setupAlto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,8 @@ export const startAlto = async (rpc: string, altoPort: string) => {
const alto = spawn(command, args, options)

// [USE FOR DEBUGGING]
alto.stdout.on("data", (data) => console.log(data.toString()))
alto.stderr.on("data", (data) => console.log(data.toString()))
// alto.stdout.on("data", (data) => console.log(data.toString()))
// alto.stderr.on("data", (data) => console.log(data.toString()))

await waitPort({
host: "127.0.0.1",
Expand Down

0 comments on commit a6de5bc

Please sign in to comment.