Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
mlibre committed May 24, 2024
1 parent 3e12e81 commit 8196012
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/test/blockchain.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import Wallet from "../library/wallet.js";
import Transaction from "../library/transaction.js";
import POWConsensus from "../library/pow-consensus.js";
import fs from "fs";
import { describe, it, expect, beforeAll, afterAll } from "vitest";
import { describe, test, expect, beforeAll, afterAll } from "vitest";

const TEST_DB_PATH = `${import.meta.dirname}/test-db`;

Expand Down Expand Up @@ -43,7 +43,7 @@ describe( "Blockchain Test Suite", () =>
cleanTestDB();
}, 1000 );

it( "serial test", () =>
test( "serial test", () =>
{
const blockchain = initializeBlockchain(); // miner: 100

Expand Down

0 comments on commit 8196012

Please sign in to comment.