Skip to content

Commit 6d24565

Browse files
committed
Minor cleanup
1 parent e90263f commit 6d24565

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/test1.mjs

+4-4
Original file line numberDiff line numberDiff line change
@@ -6,18 +6,18 @@ import {
66
runIntegrationTest
77
} from "./testLibrary.mjs";
88

9-
async function test1() {
9+
async function helloTrump() {
1010
const reply = await send("Hi");
1111
assert(reply.length > 10);
1212
}
1313

14-
async function test2() {
14+
async function coinbaseTest() {
1515
// TODO
1616
}
1717

18-
const allTests = [test1, test2];
18+
const testSuite = [helloTrump]; // Add tests here
1919
try {
20-
for (const test of allTests) await runIntegrationTest(test);
20+
for (const test of testSuite) await runIntegrationTest(test);
2121
} catch (error) {
2222
logError(error);
2323
process.exit(1);

0 commit comments

Comments
 (0)