Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion e2e-tests/tests/basic-happy-path.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ describe('Basic Happy Path', () => {
describe('Delete the application via UI', () => {
before(function () {
// Skip deletion if any previous test has failed on stage - preserve app for debugging
if (hasTestFailed && Cypress.env('PERIODIC_RUN_STAGE') === 'true') {
if (hasTestFailed && Cypress.env('PERIODIC_RUN_STAGE')) {
cy.log('⚠️ Skipping application deletion - previous tests failed');
cy.log(`Application "${applicationName}" will be preserved for debugging`);
this.skip();
Expand Down
Loading