mirror of
https://github.com/cypress-io/cypress.git
synced 2026-02-20 06:01:12 -06:00
chore: (multi-domain) support multiple remote states (#20752)
This commit is contained in:
9
cli/types/cypress.d.ts
vendored
9
cli/types/cypress.d.ts
vendored
@@ -48,16 +48,12 @@ declare namespace Cypress {
|
||||
}
|
||||
|
||||
interface RemoteState {
|
||||
auth?: {
|
||||
username: string
|
||||
password: string
|
||||
}
|
||||
auth?: Auth
|
||||
domainName: string
|
||||
strategy: 'file' | 'http'
|
||||
origin: string
|
||||
fileServer: string
|
||||
fileServer: string | null
|
||||
props: Record<string, any>
|
||||
visiting: string
|
||||
}
|
||||
|
||||
interface Backend {
|
||||
@@ -68,7 +64,6 @@ declare namespace Cypress {
|
||||
* @see https://on.cypress.io/firefox-gc-issue
|
||||
*/
|
||||
(task: 'firefox:force:gc'): Promise<void>
|
||||
(task: 'ready:for:domain'): Promise<void>
|
||||
(task: 'net', eventName: string, frame: any): Promise<void>
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user