Skip to content

Commit

Permalink
Minor cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
jzvikart committed Dec 17, 2024
1 parent e90263f commit 6d24565
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test1.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 6d24565

Please sign in to comment.