Skip to content

Commit

Permalink
chore: add a dummy test to pass CI
Browse files Browse the repository at this point in the history
  • Loading branch information
thaixuandang committed Jul 4, 2024
1 parent f6bc9be commit 893bd6a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/Dummy.t.sol
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.0;
pragma abicoder v2;

import { Test, console } from "forge-std/Test.sol";

contract DummyTest is Test {
function test() public {
console.log("Hello, World!");
}
}

0 comments on commit 893bd6a

Please sign in to comment.