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

(-)a/t/cypress/integration/ERM/DataProviders_spec.ts (+5 lines)
Lines 682-687 describe("Data provider tab options", () => { Link Here
682
682
683
        cy.get("#usage_data_providerstabs").contains("Import logs").click();
683
        cy.get("#usage_data_providerstabs").contains("Import logs").click();
684
        cy.get("#counter_logs_list").contains("Showing 1 to 1 of 1 entries");
684
        cy.get("#counter_logs_list").contains("Showing 1 to 1 of 1 entries");
685
686
        // Check 'Imported by' name
687
        cy.get("#counter_logs_list table tbody tr:first td")
688
            .eq(2)
689
            .contains("koha");
685
    });
690
    });
686
});
691
});
687
692
(-)a/t/cypress/support/e2e.js (-2 / +22 lines)
Lines 1226-1232 cy.get_counter_file = () => { Link Here
1226
                    "erm_counter_log_id": 2,
1226
                    "erm_counter_log_id": 2,
1227
                    "filename": "PTFS Journals_TR_J1",
1227
                    "filename": "PTFS Journals_TR_J1",
1228
                    "importdate": "2023-06-19T09:40:46+00:00",
1228
                    "importdate": "2023-06-19T09:40:46+00:00",
1229
                    "logdetails": null
1229
                    "logdetails": null,
1230
                    "patron": {
1231
                        "cardnumber": "42",
1232
                        "category_id": "S",
1233
                        "check_previous_checkout": "inherit",
1234
                        "date_enrolled": "2024-04-18",
1235
                        "expiry_date": "2032-07-18",
1236
                        "incorrect_address": false,
1237
                        "lang": "default",
1238
                        "library_id": "CPL",
1239
                        "login_attempts": 0,
1240
                        "patron_card_lost": false,
1241
                        "patron_id": 51,
1242
                        "privacy": 1,
1243
                        "privacy_guarantor_checkouts": 0,
1244
                        "privacy_guarantor_fines": false,
1245
                        "protected": false,
1246
                        "restricted": false,
1247
                        "surname": "koha",
1248
                        "updated_on": "2024-04-18T09:42:59+00:00",
1249
                        "userid": "koha",
1250
                    },
1230
                }
1251
                }
1231
            ]
1252
            ]
1232
        }
1253
        }
1233
- 

Return to bug 36627