cypress-cdp
Advanced tools
Comparing version 1.4.34 to 1.5.0
{ | ||
"name": "cypress-cdp", | ||
"version": "1.4.34", | ||
"version": "1.5.0", | ||
"description": "A custom Cypress command to wrap the remote debugger protocol low level command", | ||
@@ -5,0 +5,0 @@ "main": "src", |
@@ -43,4 +43,5 @@ // Type definitions for cypress-cdp 1.3 | ||
interface hasEventListenersFnOptions { | ||
log: LogConfig | ||
type: string | ||
log?: LogConfig | ||
timeout?: number | ||
type?: string | ||
} | ||
@@ -47,0 +48,0 @@ type hasEventListenersFn = ( |
@@ -92,3 +92,6 @@ /// <reference types="cypress" /> | ||
}, | ||
{ log: false }, | ||
{ | ||
log: false, | ||
timeout: options.timeout, | ||
}, | ||
) | ||
@@ -95,0 +98,0 @@ .should((v) => { |
12589
221