-
Notifications
You must be signed in to change notification settings - Fork 3.2k
/
cypress-npm-api.d.ts
413 lines (395 loc) · 10.7 KB
/
cypress-npm-api.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
//
// Cypress NPM api type declarations
// https://on.cypress.io/module-api
// https://github.com/cypress-io/cypress/issues/2141
//
// in the future the NPM module itself will be in TypeScript
// but for now describe it as an ambient module
declare namespace CypressCommandLine {
/**
* All options that one can pass to "cypress.run"
* @see https://on.cypress.io/module-api#cypress-run
* @example
```
const cypress = require('cypress')
cypress.run({
reporter: 'junit',
browser: 'chrome',
config: {
baseUrl: 'http://localhost:8080',
chromeWebSecurity: false,
},
env: {
foo: 'bar',
baz: 'quux',
}
})
```
*/
interface CypressRunOptions extends CypressCommonOptions {
/**
* Specify browser to run tests in, either by name or by filesystem path
*/
browser: string
/**
* Specify a unique identifier for a run to enable grouping or parallelization
*/
ciBuildId: string
/**
* Group recorded tests together under a single run name
*/
group: string
/**
* Tag string for the recorded run, like "production,nightly"
*/
tag: string
/**
* Display the browser instead of running headlessly
*/
headed: boolean
/**
* Hide the browser instead of running headed
*/
headless: boolean
/**
* Specify your secret Record Key
*/
key: string
/**
* Keep Cypress open after all tests run
*/
noExit: boolean
/**
* Run recorded specs in parallel across multiple machines
*/
parallel: boolean
/**
* Override default port
*/
port: number
/**
* Run quietly, using only the configured reporter
*/
quiet: boolean
/**
* Whether to record the test run
*/
record: boolean
/**
* Specify a mocha reporter
*/
reporter: string
/**
* Specify mocha reporter options
*/
reporterOptions: any
/**
* Specify the specs to run
*/
spec: string
/**
* Specify the number of failures to cancel a run being recorded to the Cloud or false to disable auto-cancellation.
*/
autoCancelAfterFailures: number | false
/**
* Whether to display the Cypress Runner UI
*/
runnerUi: boolean
}
/**
* All options that one can pass to "cypress.open"
* @see https://on.cypress.io/module-api#cypress-open
* @example
```
const cypress = require('cypress')
cypress.open({
env: {
username: 'Joe Doe',
email: 'joe@acme.co'
},
project: '~/demos/my-project'
})
```
*/
interface CypressOpenOptions extends CypressCommonOptions {
/**
* Specify browser to run tests in, either by name or by filesystem path
*/
browser: string
/**
* Open Cypress in detached mode
*/
detached: boolean
/**
* Run in global mode
*/
global: boolean
/**
* Override default port
*/
port: number
}
/**
* Options available for `cypress.open` and `cypress.run`
*/
interface CypressCommonOptions {
/**
* Specify configuration
*/
config: Cypress.ConfigOptions
/**
* Path to the config file to be used.
*
* @default "cypress.config.{js,ts,mjs,cjs}"
*/
configFile: string
/**
* Specify environment variables.
* TODO: isn't this duplicate of config.env?!
*/
env: object
/**
* Path to a specific project
*/
project: string
/**
* Specify the type of tests to execute.
* @default "e2e"
*/
testingType: Cypress.TestingType
}
// small utility types to better express meaning of other types
type dateTimeISO = string
type ms = number
type pixels = number
/**
* Cypress single test result
*/
interface TestResult {
duration: number
title: string[]
state: string
/**
* Error string as it's presented in console if the test fails
*/
displayError: string | null
attempts: AttemptResult[]
}
interface AttemptResult {
state: string
}
/**
* Information about a single screenshot.
*/
interface ScreenshotInformation {
name: string
takenAt: dateTimeISO
/**
* Absolute path to the saved image
*/
path: string
height: pixels
width: pixels
}
interface SpecResult {
/**
* resolved filename of the spec
*/
absolute: string
/**
* file extension like ".js"
*/
fileExtension: string
/**
* file name without extension like "spec"
*/
fileName: string
/**
* filename like "spec.js"
*/
name: string
/**
* name relative to the project root, like "cypress/integration/spec.js"
*/
relative: string
}
/**
* Cypress test run result for a single spec.
*/
interface RunResult {
error: string | null
/**
* Reporter name like "spec"
*/
reporter: string
/**
* This is controlled by the reporter, and Cypress cannot guarantee
* the properties. Usually this object has suites, tests, passes, etc
*/
reporterStats: object
screenshots: ScreenshotInformation[]
/**
* Accurate test results collected by Cypress.
*/
stats: {
duration?: ms
endedAt: dateTimeISO
failures: number
passes: number
pending: number
skipped: number
startedAt: dateTimeISO
suites: number
tests: number
}
/**
* information about the spec test file.
*/
spec: SpecResult
tests: TestResult[]
video: string | null
}
type PublicConfig = Omit<Cypress.ResolvedConfigOptions, 'additionalIgnorePattern' | 'autoOpen' | 'browser' | 'browsers' | 'browserUrl' | 'clientRoute' | 'cypressEnv' | 'devServerPublicPathRoute' | 'morgan' | 'namespace' | 'proxyServer' | 'proxyUrl' | 'rawJson' | 'remote' | 'repoRoot' | 'report' | 'reporterRoute' | 'reporterUrl' | 'resolved' | 'setupNodeEvents' | 'socketId' | 'socketIoCookie' | 'socketIoRoute' | 'specs' | 'state' | 'supportFolder'> & {
browsers: Cypress.PublicBrowser[]
cypressInternalEnv: string
}
/**
* Results returned by the test run.
* @see https://on.cypress.io/module-api
*/
interface CypressRunResult {
browserName: string
browserPath: string
browserVersion: string
config: PublicConfig
cypressVersion: string
endedTestsAt: dateTimeISO
osName: string
osVersion: string
runs: RunResult[]
/**
* If Cypress test run was recorded, full url will be provided.
* @see https://on.cypress.io/cloud-introduction
*/
runUrl?: string
startedTestsAt: dateTimeISO
totalDuration: number
totalFailed: number
totalPassed: number
totalPending: number
totalSkipped: number
totalSuites: number
totalTests: number
}
/**
* If Cypress fails to run at all (for example, if there are no spec files to run),
* then it will return a CypressFailedRunResult. Check the failures attribute.
* @example
```
const result = await cypress.run()
if (result.status === 'failed') {
console.error('failures %d', result.failures)
console.error(result.message)
process.exit(result.failures)
}
```
*
**/
interface CypressFailedRunResult {
status: 'failed'
failures: number
message: string
}
/**
* Methods allow parsing given CLI arguments the same way Cypress CLI does it.
*/
interface CypressCliParser {
/**
* Parses the given array of string arguments to "cypress run"
* just like Cypress CLI does it.
* @see https://on.cypress.io/module-api
* @example
* const cypress = require('cypress')
* const args = ['cypress', 'run', '--browser', 'chrome']
* const options = await cypress.cli.parseRunArguments(args)
* // options is {browser: 'chrome'}
* // pass the options to cypress.run()
* const results = await cypress.run(options)
*/
parseRunArguments(args: string[]): Promise<Partial<CypressRunOptions>>
}
}
declare module 'cypress' {
/**
* Cypress NPM module interface.
* @see https://on.cypress.io/module-api
* @example
```
const cypress = require('cypress')
cypress.run().then(results => ...)
```
*/
interface CypressNpmApi {
/**
* Execute a headless Cypress test run.
* @see https://on.cypress.io/module-api#cypress-run
* @example
```
const cypress = require('cypress')
// runs all spec files matching a wildcard
cypress.run({
spec: 'cypress/integration/admin*-spec.js'
}).then(results => {
if (results.status === 'failed') {
// Cypress could not run
} else {
// inspect results object
}
})
```
*/
run(options?: Partial<CypressCommandLine.CypressRunOptions>): Promise<CypressCommandLine.CypressRunResult | CypressCommandLine.CypressFailedRunResult>
/**
* Opens Cypress GUI. Resolves with void when the
* GUI is closed.
* @see https://on.cypress.io/module-api#cypress-open
*/
open(options?: Partial<CypressCommandLine.CypressOpenOptions>): Promise<void>
/**
* Utility functions for parsing CLI arguments the same way
* Cypress does
*/
cli: CypressCommandLine.CypressCliParser
/**
* Provides automatic code completion for configuration in many popular code editors.
* While it's not strictly necessary for Cypress to parse your configuration, we
* recommend wrapping your config object with `defineConfig()`
* @example
* module.exports = defineConfig({
* viewportWidth: 400
* })
*
* @see ../types/cypress-npm-api.d.ts
* @param {Cypress.ConfigOptions} config
* @returns {Cypress.ConfigOptions} the configuration passed in parameter
*/
defineConfig<ComponentDevServerOpts = any>(config: Cypress.ConfigOptions<ComponentDevServerOpts>): Cypress.ConfigOptions
/**
* Provides automatic code completion for Component Frameworks Definitions.
* While it's not strictly necessary for Cypress to parse your configuration, we
* recommend wrapping your Component Framework Definition object with `defineComponentFramework()`
* @example
* module.exports = defineComponentFramework({
* type: 'cypress-ct-solid-js'
* })
*
* @see ../types/cypress-npm-api.d.ts
* @param {Cypress.ThirdPartyComponentFrameworkDefinition} config
* @returns {Cypress.ThirdPartyComponentFrameworkDefinition} the configuration passed in parameter
*/
defineComponentFramework(config: Cypress.ThirdPartyComponentFrameworkDefinition): Cypress.ThirdPartyComponentFrameworkDefinition
}
// export Cypress NPM module interface
const cypress: CypressNpmApi
export = cypress
}