Skip to content

Commit 250f007

Browse files
chore: increase pause
1 parent d3aa8f6 commit 250f007

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/specs/debugApexTests.e2e.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ describe('Debug Apex Tests', async () => {
8282
// Click the "Debug All Tests" code lens at the top of the class
8383
const debugAllTestsOption = await textEditor.getCodeLens('Debug All Tests');
8484
await debugAllTestsOption!.click();
85-
await utilities.pause(utilities.Duration.seconds(10));
85+
await utilities.pause(utilities.Duration.seconds(20));
8686

8787
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
8888
let successNotificationWasFound;
@@ -116,7 +116,7 @@ describe('Debug Apex Tests', async () => {
116116
// Click the "Debug Test" code lens at the top of one of the test methods
117117
const debugTestOption = await textEditor.getCodeLens('Debug Test');
118118
await debugTestOption!.click();
119-
await utilities.pause(utilities.Duration.seconds(10));
119+
await utilities.pause(utilities.Duration.seconds(20));
120120

121121
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
122122
let successNotificationWasFound;
@@ -157,7 +157,7 @@ describe('Debug Apex Tests', async () => {
157157
const debugTestsAction = await apexTestItem.getActionButton('Debug Tests');
158158
expect(debugTestsAction).to.not.be.undefined;
159159
await debugTestsAction?.click();
160-
await utilities.pause(utilities.Duration.seconds(10));
160+
await utilities.pause(utilities.Duration.seconds(20));
161161

162162
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
163163
let successNotificationWasFound;
@@ -195,7 +195,7 @@ describe('Debug Apex Tests', async () => {
195195
const debugTestAction = await apexTestItem.getActionButton('Debug Single Test');
196196
expect(debugTestAction).to.not.be.undefined;
197197
await debugTestAction?.click();
198-
await utilities.pause(utilities.Duration.seconds(10));
198+
await utilities.pause(utilities.Duration.seconds(20));
199199

200200
// Look for the success notification that appears which says, "Debug Test(s) successfully ran".
201201
let successNotificationWasFound;

0 commit comments

Comments
 (0)