We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 920d933 commit 90a0db9Copy full SHA for 90a0db9
cypress/e2e/ui/Settings/Application-Settings/schedule.cy.js
@@ -303,4 +303,19 @@ describe('Automate Schedule form operations: Settings > Application Settings > S
303
/* ===== Deleting schedule ===== */
304
deleteSchedule();
305
});
306
+
307
+ afterEach(() => {
308
+ cy.get('li.list-group-item').each(($el) => {
309
+ const text = $el?.text()?.trim();
310
+ if (text === 'Test name') {
311
+ deleteSchedule();
312
+ return false;
313
+ }
314
+ if (text === 'Dummy name') {
315
+ deleteSchedule('Dummy name');
316
317
318
+ return true;
319
+ });
320
321
0 commit comments