From 6d24565a51b1964084d2b27f3f1d1c0b630d9ebc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jure=20=C5=BDvikart?= <7929905+jzvikart@users.noreply.github.com> Date: Tue, 17 Dec 2024 04:14:31 +0100 Subject: [PATCH] Minor cleanup --- tests/test1.mjs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tests/test1.mjs b/tests/test1.mjs index b28b6f13819..19b6f1c42a9 100644 --- a/tests/test1.mjs +++ b/tests/test1.mjs @@ -6,18 +6,18 @@ import { runIntegrationTest } from "./testLibrary.mjs"; -async function test1() { +async function helloTrump() { const reply = await send("Hi"); assert(reply.length > 10); } -async function test2() { +async function coinbaseTest() { // TODO } -const allTests = [test1, test2]; +const testSuite = [helloTrump]; // Add tests here try { - for (const test of allTests) await runIntegrationTest(test); + for (const test of testSuite) await runIntegrationTest(test); } catch (error) { logError(error); process.exit(1);