1
- type ServiceInstance = import ( '@wdio/types' ) . Services . ServiceInstance ;
2
- type Test = import ( '@wdio/types' ) . Frameworks . Test ;
3
- type TestResult = import ( '@wdio/types' ) . Frameworks . TestResult ;
4
- type PickleStep = import ( '@wdio/types' ) . Frameworks . PickleStep ;
5
- type Scenario = import ( '@wdio/types' ) . Frameworks . Scenario ;
6
- type SnapshotResult = import ( '@vitest/snapshot' ) . SnapshotResult ;
7
- type SnapshotUpdateState = import ( '@vitest/snapshot' ) . SnapshotUpdateState ;
1
+ /* eslint-disable @typescript-eslint/consistent-type-imports*/
2
+ type ServiceInstance = import ( '@wdio/types' ) . Services . ServiceInstance
3
+ type Test = import ( '@wdio/types' ) . Frameworks . Test
4
+ type TestResult = import ( '@wdio/types' ) . Frameworks . TestResult
5
+ type PickleStep = import ( '@wdio/types' ) . Frameworks . PickleStep
6
+ type Scenario = import ( '@wdio/types' ) . Frameworks . Scenario
7
+ type SnapshotResult = import ( '@vitest/snapshot' ) . SnapshotResult
8
+ type SnapshotUpdateState = import ( '@vitest/snapshot' ) . SnapshotUpdateState
8
9
9
10
declare namespace ExpectWebdriverIO {
10
11
const expect : ExpectWebdriverIO . Expect
11
12
function setOptions ( options : DefaultOptions ) : void
13
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
12
14
function getConfig ( ) : any
13
15
14
16
interface SnapshotServiceArgs {
@@ -23,32 +25,34 @@ declare namespace ExpectWebdriverIO {
23
25
}
24
26
25
27
interface SoftFailure {
26
- error : Error ;
27
- matcherName : string ;
28
- location ?: string ;
28
+ error : Error
29
+ matcherName : string
30
+ location ?: string
29
31
}
30
32
31
33
class SoftAssertService {
32
- static getInstance ( ) : SoftAssertService ;
33
- setCurrentTest ( testId : string , testName ?: string , testFile ?: string ) : void ;
34
- clearCurrentTest ( ) : void ;
35
- getCurrentTestId ( ) : string | null ;
36
- addFailure ( error : Error , matcherName : string ) : void ;
37
- getFailures ( testId ?: string ) : SoftFailure [ ] ;
38
- clearFailures ( testId ?: string ) : void ;
39
- assertNoFailures ( testId ?: string ) : void ;
34
+ static getInstance ( ) : SoftAssertService
35
+ setCurrentTest ( testId : string , testName ?: string , testFile ?: string ) : void
36
+ clearCurrentTest ( ) : void
37
+ getCurrentTestId ( ) : string | null
38
+ addFailure ( error : Error , matcherName : string ) : void
39
+ getFailures ( testId ?: string ) : SoftFailure [ ]
40
+ clearFailures ( testId ?: string ) : void
41
+ assertNoFailures ( testId ?: string ) : void
40
42
}
41
43
42
44
interface SoftAssertionServiceOptions {
43
- autoAssertOnTestEnd ?: boolean ;
45
+ autoAssertOnTestEnd ?: boolean
44
46
}
45
47
46
48
class SoftAssertionService implements ServiceInstance {
47
- constructor ( serviceOptions ?: SoftAssertionServiceOptions , capabilities ?: any , config ?: any ) ;
48
- beforeTest ( test : Test ) : void ;
49
- beforeStep ( step : PickleStep , scenario : Scenario ) : void ;
50
- afterTest ( test : Test , context : any , result : TestResult ) : void ;
51
- afterStep ( step : PickleStep , scenario : Scenario , result : { passed : boolean , error ?: Error } ) : void ;
49
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
50
+ constructor ( serviceOptions ?: SoftAssertionServiceOptions , capabilities ?: any , config ?: any )
51
+ beforeTest ( test : Test ) : void
52
+ beforeStep ( step : PickleStep , scenario : Scenario ) : void
53
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
54
+ afterTest ( test : Test , context : any , result : TestResult ) : void
55
+ afterStep ( step : PickleStep , scenario : Scenario , result : { passed : boolean , error ?: Error } ) : void
52
56
}
53
57
54
58
interface AssertionResult {
@@ -59,7 +63,9 @@ declare namespace ExpectWebdriverIO {
59
63
const matchers : Map <
60
64
string ,
61
65
(
66
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
62
67
actual : any ,
68
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
63
69
...expected : any [ ]
64
70
) => Promise < AssertionResult >
65
71
>
@@ -79,6 +85,7 @@ declare namespace ExpectWebdriverIO {
79
85
* expect(el).toHaveAttribute('attr', 'value', { ... }) // expectedValue is `['attr', 'value]`
80
86
* ```
81
87
*/
88
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
82
89
expectedValue ?: any ,
83
90
/**
84
91
* Options that the user has passed in, e.g. `expect(el).toHaveText('foo', { ignoreCase: true })` -> `{ ignoreCase: true }`
@@ -238,10 +245,10 @@ declare namespace ExpectWebdriverIO {
238
245
* **Usage**
239
246
* ```js
240
247
* // Check if an element has the class 'btn'
241
- * await expect(element).toHaveElementClass('btn');
248
+ * await expect(element).toHaveElementClass('btn')
242
249
*
243
250
* // Check if an element has any of the specified classes
244
- * await expect(element).toHaveElementClass(['btn', 'btn-large']);
251
+ * await expect(element).toHaveElementClass(['btn', 'btn-large'])
245
252
* ```
246
253
*/
247
254
toHaveElementClass ( className : string | RegExp | Array < string | RegExp > | ExpectWebdriverIO . PartialMatcher , options ?: ExpectWebdriverIO . StringOptions ) : R
@@ -251,6 +258,7 @@ declare namespace ExpectWebdriverIO {
251
258
*/
252
259
toHaveElementProperty (
253
260
property : string | RegExp | ExpectWebdriverIO . PartialMatcher ,
261
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
254
262
value ?: any ,
255
263
options ?: ExpectWebdriverIO . StringOptions
256
264
) : R
@@ -418,7 +426,7 @@ declare namespace ExpectWebdriverIO {
418
426
toBeElementsArrayOfSize (
419
427
size : number | ExpectWebdriverIO . NumberOptions ,
420
428
options ?: ExpectWebdriverIO . NumberOptions
421
- ) : R & Promise < WebdriverIO . ElementArray > ;
429
+ ) : R & Promise < WebdriverIO . ElementArray >
422
430
423
431
// ==== network mock ====
424
432
/**
@@ -479,8 +487,10 @@ declare namespace ExpectWebdriverIO {
479
487
type JsonCompatible = jsonObject | jsonArray
480
488
481
489
interface PartialMatcher {
490
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
482
491
sample ?: any
483
492
$$typeof : symbol
493
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
484
494
asymmetricMatch ( ...args : any [ ] ) : boolean
485
495
toString ( ) : string
486
496
}
@@ -527,6 +537,7 @@ declare namespace ExpectWebdriverIO {
527
537
}
528
538
529
539
interface AsymmetricMatchers {
540
+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
530
541
any ( expectedObject : any ) : PartialMatcher
531
542
anything ( ) : PartialMatcher
532
543
arrayContaining ( sample : Array < unknown > ) : PartialMatcher
0 commit comments