# clear

Resets all information stored in the `mock.calls` array.

## Usage[​](#usage "Direct link to Usage")

```
mock.clear()
```

## Example[​](#example "Direct link to Example")

clear.js

```
it('should clear mock', async () => {
    const mock = await browser.mock('https://google.com/')
    await browser.url('https://google.com')

    console.log(mock.calls.length) // returns 1
    mock.clear()
    console.log(mock.calls.length) // returns 0
})
```
