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 1140-1146 cy.get_counter_file = () => { Link Here
1140
                    "erm_counter_log_id": 2,
1140
                    "erm_counter_log_id": 2,
1141
                    "filename": "PTFS Journals_TR_J1",
1141
                    "filename": "PTFS Journals_TR_J1",
1142
                    "importdate": "2023-06-19T09:40:46+00:00",
1142
                    "importdate": "2023-06-19T09:40:46+00:00",
1143
                    "logdetails": null
1143
                    "logdetails": null,
1144
                    "patron": {
1145
                        "cardnumber": "42",
1146
                        "category_id": "S",
1147
                        "check_previous_checkout": "inherit",
1148
                        "date_enrolled": "2024-04-18",
1149
                        "expiry_date": "2032-07-18",
1150
                        "incorrect_address": false,
1151
                        "lang": "default",
1152
                        "library_id": "CPL",
1153
                        "login_attempts": 0,
1154
                        "patron_card_lost": false,
1155
                        "patron_id": 51,
1156
                        "privacy": 1,
1157
                        "privacy_guarantor_checkouts": 0,
1158
                        "privacy_guarantor_fines": false,
1159
                        "protected": false,
1160
                        "restricted": false,
1161
                        "surname": "koha",
1162
                        "updated_on": "2024-04-18T09:42:59+00:00",
1163
                        "userid": "koha",
1164
                    },
1144
                }
1165
                }
1145
            ]
1166
            ]
1146
        }
1167
        }
1147
- 

Return to bug 36627