Skip to content

Commit

Permalink
Feedback.
Browse files Browse the repository at this point in the history
  • Loading branch information
sainthkh committed Jan 19, 2021
1 parent 5cc3ecb commit 92f9e6f
Showing 1 changed file with 18 additions and 17 deletions.
35 changes: 18 additions & 17 deletions cli/types/cypress.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2624,51 +2624,54 @@ declare namespace Cypress {
*/
blockHosts: null | string | string[]
/**
* The browser Cypress is runnong on.
* The browser Cypress is running on.
*/
browser: Browser
/**
* The browsers Cypress can use.
* Available browsers found on your system.
*/
browsers: Browser[]
/**
* Path to folder containing component test files.
*/
componentFolder: string
/**
* Enables component testing.
* Whether component testing is enabled.
*/
experimentalComponentTesting: boolean
/**
* Enables polyfill fetch.
*/
experimentalFetchPolyfill: boolean
/**
* ???
*/
hosts: null | string[]
/**
* With this option enabled - Cypress will search through the response streams
* coming from your server on .html and .js files
* and replace code that matches some patterns.
* Whether Cypress was launched via 'cypress open' (interactive mode)
*/
isInteractive: boolean
/**
* Whether Cypress will search for and replace
* obstructive JS code in .js or .html files.
*
* @see https://docs.cypress.io/guides/references/configuration.html#modifyObstructiveCode
* @see https://on.cypress.io/configuration#modifyObstructiveCode
*/
modifyObstructiveCode: boolean
/**
* ???
* The platform Cypress is running on.
*/
platform: 'linux' | 'darwin' | 'win32'
/**
* A unique ID for the project used for recording
*/
projectId: null | string
/**
* The path to the support folder
* Path to the support folder.
*/
supportFolder: string
/**
* Glob pattern for the test files.
* Glob pattern to determine what test files to load.
*/
testFiles: string
/**
* ???
* The user agent the browser sends in all request headers.
*/
userAgent: null | string
/**
Expand All @@ -2684,14 +2687,12 @@ declare namespace Cypress {
cypressEnv: string
integrationExampleName: string
integrationExamplePath: string
isInteractive: boolean
isNewProject: boolean
isTextTerminal: boolean
morgan: boolean
namespace: string
parentTestsFolder: string
parentTestsFolderDisplay: string
platform: 'linux' | 'darwin' | 'win32'
projectName: string
projectRoot: string
proxyUrl: string
Expand Down

0 comments on commit 92f9e6f

Please sign in to comment.