From a6de5bcb2361d10f86b4bf54f451d322b987dfab Mon Sep 17 00:00:00 2001 From: mouseless <97399882+mouseless-eth@users.noreply.github.com> Date: Sat, 25 May 2024 14:49:31 +0100 Subject: [PATCH] remove logs and fix test param --- test/kinto-e2e/src/index.ts | 2 +- test/kinto-e2e/src/setupAlto.ts | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/test/kinto-e2e/src/index.ts b/test/kinto-e2e/src/index.ts index c66dccc8..02e6c5fe 100644 --- a/test/kinto-e2e/src/index.ts +++ b/test/kinto-e2e/src/index.ts @@ -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 } diff --git a/test/kinto-e2e/src/setupAlto.ts b/test/kinto-e2e/src/setupAlto.ts index 61573450..937e4d88 100644 --- a/test/kinto-e2e/src/setupAlto.ts +++ b/test/kinto-e2e/src/setupAlto.ts @@ -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",