@@ -37,15 +37,15 @@ describe('Notifications', async () => {
37
37
utilities . Duration . seconds ( 2 )
38
38
) ;
39
39
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
40
- expect ( isPresent ) . to . be . true ;
40
+ expect ( isPresent ) . to . equal ( true ) ;
41
41
await utilities . dismissNotification ( 'Modify the file and retrieve again' ) ;
42
42
await utilities . pause ( utilities . Duration . seconds ( 1 ) ) ;
43
43
const isNotPresent = await utilities . notificationIsAbsentWithTimeout (
44
44
'Modify the file and retrieve again' ,
45
45
utilities . Duration . seconds ( 1 )
46
46
) ;
47
47
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
48
- expect ( isNotPresent ) . to . be . true ;
48
+ expect ( isNotPresent ) . to . equal ( true ) ;
49
49
await utilities . pause ( utilities . Duration . seconds ( 2 ) ) ;
50
50
} ) ;
51
51
it ( 'should show a notification with two actions' , async ( ) => {
@@ -55,7 +55,7 @@ describe('Notifications', async () => {
55
55
utilities . Duration . seconds ( 1 )
56
56
) ;
57
57
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
58
- expect ( isPresent ) . to . be . true ;
58
+ expect ( isPresent ) . to . equal ( true ) ;
59
59
await utilities . pause ( utilities . Duration . seconds ( 1 ) ) ;
60
60
61
61
await utilities . acceptNotification ( 'Choose an action:' , 'A' , utilities . Duration . seconds ( 1 ) ) ;
@@ -65,6 +65,6 @@ describe('Notifications', async () => {
65
65
utilities . Duration . seconds ( 5 )
66
66
) ;
67
67
// eslint-disable-next-line @typescript-eslint/no-unused-expressions
68
- expect ( isNotPresent ) . to . be . true ;
68
+ expect ( isNotPresent ) . to . equal ( true ) ;
69
69
} ) ;
70
70
} ) ;
0 commit comments