ci: fuzz 10,000 times

test: mark "testExample" function as "external"
This commit is contained in:
Paul Razvan Berg 2022-12-24 16:10:31 +02:00
parent 3bd0c90840
commit 5bf329715e
No known key found for this signature in database
GPG Key ID: BCC366159BD63828
2 changed files with 2 additions and 2 deletions

View File

@ -14,5 +14,5 @@ src = "src"
test = "test"
[profile.ci]
fuzz = { runs = 1_000 }
fuzz = { runs = 10_000 }
verbosity = 4

View File

@ -13,7 +13,7 @@ contract FooTest is PRBTest, StdCheats {
}
/// @dev Run Forge with `-vvvv` to see console logs.
function testExample() public {
function testExample() external {
console2.log("Hello World");
assertTrue(true);
}