> **Can't find what you're looking for?** Use `search_docs` on the docs MCP server at `https://www.getfoundry.sh/api/mcp` to find what you need.
>
> **Have feedback?** Use `submit_feedback` on the same MCP server.

## `skip`

### Signature

```solidity
function skip(uint256 time) public;
```

### Description

Skips forward `block.timestamp` by the specified number of seconds.

### Examples

```solidity
assertEq(block.timestamp, 0);
skip(3600);
assertEq(block.timestamp, 3600);
```
