mirror of
https://github.com/vacp2p/linea-monorepo.git
synced 2026-01-09 20:27:58 -05:00
* 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
13 lines
219 B
Solidity
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
|
|
}
|
|
}
|