You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I suggest adding vm.skip(true) to every new test in the newly generated test suite. This practice helps improve coverage understanding and prevents incomplete (empty) tests from being overlooked in large projects with many specific tests.
function test_WhenNotOwnerCallFunction() external {
vm.skip(true);
// it reverts
}
The text was updated successfully, but these errors were encountered:
I suggest adding vm.skip(true) to every new test in the newly generated test suite. This practice helps improve coverage understanding and prevents incomplete (empty) tests from being overlooked in large projects with many specific tests.
The text was updated successfully, but these errors were encountered: