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) } })