View | Details | Raw Unified | Return to bug 36627
Collapse All | Expand All

(-)a/t/cypress/integration/ERM/DataProviders_spec.ts (+5 lines)
Lines 680-685 describe("Data provider tab options", () => { Link Here
680
680
681
        cy.get("#usage_data_providerstabs").contains("Import logs").click();
681
        cy.get("#usage_data_providerstabs").contains("Import logs").click();
682
        cy.get("#counter_logs_list").contains("Showing 1 to 1 of 1 entries");
682
        cy.get("#counter_logs_list").contains("Showing 1 to 1 of 1 entries");
683
684
        // Check 'Imported by' name
685
        cy.get("#counter_logs_list table tbody tr:first td")
686
            .eq(2)
687
            .contains("koha");
683
    });
688
    });
684
});
689
});
685
690
(-)a/t/cypress/support/e2e.js (-2 / +22 lines)
Lines 254-260 cy.get_counter_file = () => { Link Here
254
                    "erm_counter_log_id": 2,
254
                    "erm_counter_log_id": 2,
255
                    "filename": "PTFS Journals_TR_J1",
255
                    "filename": "PTFS Journals_TR_J1",
256
                    "importdate": "2023-06-19T09:40:46+00:00",
256
                    "importdate": "2023-06-19T09:40:46+00:00",
257
                    "logdetails": null
257
                    "logdetails": null,
258
                    "patron": {
259
                        "cardnumber": "42",
260
                        "category_id": "S",
261
                        "check_previous_checkout": "inherit",
262
                        "date_enrolled": "2024-04-18",
263
                        "expiry_date": "2032-07-18",
264
                        "incorrect_address": false,
265
                        "lang": "default",
266
                        "library_id": "CPL",
267
                        "login_attempts": 0,
268
                        "patron_card_lost": false,
269
                        "patron_id": 51,
270
                        "privacy": 1,
271
                        "privacy_guarantor_checkouts": 0,
272
                        "privacy_guarantor_fines": false,
273
                        "protected": false,
274
                        "restricted": false,
275
                        "surname": "koha",
276
                        "updated_on": "2024-04-18T09:42:59+00:00",
277
                        "userid": "koha",
278
                    },
258
                }
279
                }
259
            ]
280
            ]
260
        }
281
        }
261
- 

Return to bug 36627