क्लीयर (clear)
mock.calls
ऐरे में संग्रहित सभी जानकारी को रीसेट करता है।
उपयोग
mock.clear()
उदाहरण
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
})