From 5826fbf1865186c6de55fb57a022f1f594bfb098 Mon Sep 17 00:00:00 2001 From: Kavi Gupta Date: Sun, 19 Jan 2025 13:32:29 -0500 Subject: [PATCH] fix test --- react/test/quiz_infinite_test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/react/test/quiz_infinite_test.ts b/react/test/quiz_infinite_test.ts index 145663d2d..e06c514a0 100644 --- a/react/test/quiz_infinite_test.ts +++ b/react/test/quiz_infinite_test.ts @@ -6,12 +6,10 @@ import { target, safeReload, waitForQuizLoading, - screencap, } from './test_utils' async function correctIncorrect(t: TestController): Promise { await waitForQuizLoading(t) - await screencap(t) const text = await Selector('#quiz-result-summary-emoji').innerText const result: boolean[] = [] for (const c of text) { @@ -72,8 +70,6 @@ test('collect correct answers', async (t) => { throw new Error(`unexpected text ${text} in ${await symbol.textContent}`) } } - console.log(seed) - console.log(correctAnswers) correctAnswerSequences.set(seed, correctAnswers) } })