@@ -82,7 +82,7 @@ describe('Debug Apex Tests', async () => {
82
82
// Click the "Debug All Tests" code lens at the top of the class
83
83
const debugAllTestsOption = await textEditor . getCodeLens ( 'Debug All Tests' ) ;
84
84
await debugAllTestsOption ! . click ( ) ;
85
- await utilities . pause ( utilities . Duration . seconds ( 10 ) ) ;
85
+ await utilities . pause ( utilities . Duration . seconds ( 20 ) ) ;
86
86
87
87
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
88
88
let successNotificationWasFound ;
@@ -116,7 +116,7 @@ describe('Debug Apex Tests', async () => {
116
116
// Click the "Debug Test" code lens at the top of one of the test methods
117
117
const debugTestOption = await textEditor . getCodeLens ( 'Debug Test' ) ;
118
118
await debugTestOption ! . click ( ) ;
119
- await utilities . pause ( utilities . Duration . seconds ( 10 ) ) ;
119
+ await utilities . pause ( utilities . Duration . seconds ( 20 ) ) ;
120
120
121
121
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
122
122
let successNotificationWasFound ;
@@ -157,7 +157,7 @@ describe('Debug Apex Tests', async () => {
157
157
const debugTestsAction = await apexTestItem . getActionButton ( 'Debug Tests' ) ;
158
158
expect ( debugTestsAction ) . to . not . be . undefined ;
159
159
await debugTestsAction ?. click ( ) ;
160
- await utilities . pause ( utilities . Duration . seconds ( 10 ) ) ;
160
+ await utilities . pause ( utilities . Duration . seconds ( 20 ) ) ;
161
161
162
162
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
163
163
let successNotificationWasFound ;
@@ -195,7 +195,7 @@ describe('Debug Apex Tests', async () => {
195
195
const debugTestAction = await apexTestItem . getActionButton ( 'Debug Single Test' ) ;
196
196
expect ( debugTestAction ) . to . not . be . undefined ;
197
197
await debugTestAction ?. click ( ) ;
198
- await utilities . pause ( utilities . Duration . seconds ( 10 ) ) ;
198
+ await utilities . pause ( utilities . Duration . seconds ( 20 ) ) ;
199
199
200
200
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
201
201
let successNotificationWasFound ;
0 commit comments