We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5086c7a commit a3f287aCopy full SHA for a3f287a
src/Vm.sol
@@ -394,6 +394,8 @@ interface Vm is VmSafe {
394
function deal(address account, uint256 newBalance) external;
395
// Sets an address' code
396
function etch(address target, bytes calldata newRuntimeBytecode) external;
397
+ // Marks a test as skipped. Must be called at the top of the test.
398
+ function skip(bool skipTest) external;
399
// Expects an error on next call
400
function expectRevert(bytes calldata revertData) external;
401
function expectRevert(bytes4 revertData) external;
0 commit comments