Files
linea-monorepo/contracts/test/foundry/ExampleFoundryTest.t.sol
The Dark Jester 5d5b56dadd [Chore] Bumping Hardhat and Solidity to latest (#995)
* bumping Hardhat and Solidity to latest

* bump coverage plugin

* add coverage var to command execute

* revert test

* update build script to use 0.8.28
2025-05-13 08:14:07 -07:00

13 lines
219 B
Solidity

// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.30;
import "forge-std/Test.sol";
contract ExampleFoundryTest is Test {
function setUp() public {}
function testSample() public {
// Write test
}
}