Skip to content

Commit a1ab79b

Browse files
committed
merge conflicts fix
1 parent 9a15589 commit a1ab79b

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

packages/manager/cypress/e2e/core/delivery/destinations-non-empty-landing-page.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -181,15 +181,15 @@ describe('destinations landing checks for non-empty state', () => {
181181
});
182182
});
183183

184-
it('navigates to edit page when clicking destination label', () => {
184+
it('navigates to summary page when clicking destination label', () => {
185185
cy.visitWithLogin('/logs/delivery/destinations');
186186
cy.wait('@getDestinations');
187187

188188
const destination = mockAkamaiObjectStorageDestinations[0];
189189
mockGetDestination(destination).as('getDestination');
190190

191191
cy.findByText(destination.label).click();
192-
cy.url().should('endWith', `/destinations/${destination.id}/edit`);
192+
cy.url().should('endWith', `/destinations/${destination.id}/summary`);
193193
cy.wait('@getDestination');
194194
});
195195

packages/manager/cypress/e2e/core/delivery/edit-destination.spec.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ describe('Edit Destination', () => {
4343
describe('given Akamai Object Storage type destination', () => {
4444
beforeEach(() => {
4545
cy.visitWithLogin(
46-
`/logs/delivery/destinations/${mockAkamaiObjectStorageDestination.id}/edit`
46+
`/logs/delivery/destinations/${mockAkamaiObjectStorageDestination.id}/summary`
4747
);
4848
mockGetDestination(mockAkamaiObjectStorageDestination);
4949
});
@@ -199,7 +199,7 @@ describe('Edit Destination', () => {
199199
describe('given Custom HTTPS type destination', () => {
200200
beforeEach(() => {
201201
cy.visitWithLogin(
202-
`/logs/delivery/destinations/${mockCustomHttpsDestination.id}/edit`
202+
`/logs/delivery/destinations/${mockCustomHttpsDestination.id}/summary`
203203
);
204204
mockGetDestination(mockCustomHttpsDestination);
205205
});

0 commit comments

Comments
 (0)