Skip to content

Commit

Permalink
Create Dummy.t.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
gretzke committed Jul 2, 2024
1 parent fbb01aa commit 5aefdf3
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.8.26;

import {Test} from 'forge-std/Test.sol';

contract DummyTest is Test {
/// @dev tests throw an error in CI if there is no test to run
function test() external pure {
assertTrue(true);
}
}

0 comments on commit 5aefdf3

Please sign in to comment.