Skip to content

Commit 431442b

Browse files
chore: push again
1 parent 4f9e2bb commit 431442b

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

test/specs/trailApexReplayDebugger.e2e.ts

+12-10
Original file line numberDiff line numberDiff line change
@@ -250,24 +250,26 @@ describe('"Find and Fix Bugs with Apex Replay Debugger" Trailhead Module', async
250250
await textEditor.save();
251251
await utilities.pause(utilities.Duration.seconds(2));
252252

253-
// Deploy source to org
254-
await utilities.executeQuickPick('SFDX: Deploy This Source to Org', utilities.Duration.seconds(5));
253+
// Push source to org
254+
await utilities.executeQuickPick(
255+
'SFDX: Push Source to Default Org and Ignore Conflicts',
256+
utilities.Duration.seconds(10)
257+
);
255258

256-
// Verify the deploy was successful
257-
let successNotificationWasFound;
259+
let successPushNotificationWasFound;
258260
try {
259-
successNotificationWasFound = await utilities.notificationIsPresentWithTimeout(
260-
'SFDX: Deploy This Source to Org successfully ran',
261+
successPushNotificationWasFound = await utilities.notificationIsPresentWithTimeout(
262+
'SFDX: Push Source to Default Org and Ignore Conflicts successfully ran',
261263
utilities.Duration.TEN_MINUTES
262264
);
263-
expect(successNotificationWasFound).to.equal(true);
265+
expect(successPushNotificationWasFound).to.equal(true);
264266
} catch (error) {
265267
await utilities.getWorkbench().openNotificationsCenter();
266-
successNotificationWasFound = await utilities.notificationIsPresentWithTimeout(
267-
'SFDX: Deploy This Source to Org successfully ran',
268+
successPushNotificationWasFound = await utilities.notificationIsPresentWithTimeout(
269+
'SFDX: Push Source to Default Org and Ignore Conflicts successfully ran',
268270
utilities.Duration.ONE_MINUTE
269271
);
270-
expect(successNotificationWasFound).to.equal(true);
272+
expect(successPushNotificationWasFound).to.equal(true);
271273
}
272274
});
273275

0 commit comments

Comments
 (0)