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 1367-1373 cy.get_counter_file = () => { Link Here
1367
                    "erm_counter_log_id": 2,
1367
                    "erm_counter_log_id": 2,
1368
                    "filename": "PTFS Journals_TR_J1",
1368
                    "filename": "PTFS Journals_TR_J1",
1369
                    "importdate": "2023-06-19T09:40:46+00:00",
1369
                    "importdate": "2023-06-19T09:40:46+00:00",
1370
                    "logdetails": null
1370
                    "logdetails": null,
1371
                    "patron": {
1372
                        "cardnumber": "42",
1373
                        "category_id": "S",
1374
                        "check_previous_checkout": "inherit",
1375
                        "date_enrolled": "2024-04-18",
1376
                        "expiry_date": "2032-07-18",
1377
                        "incorrect_address": false,
1378
                        "lang": "default",
1379
                        "library_id": "CPL",
1380
                        "login_attempts": 0,
1381
                        "patron_card_lost": false,
1382
                        "patron_id": 51,
1383
                        "privacy": 1,
1384
                        "privacy_guarantor_checkouts": 0,
1385
                        "privacy_guarantor_fines": false,
1386
                        "protected": false,
1387
                        "restricted": false,
1388
                        "surname": "koha",
1389
                        "updated_on": "2024-04-18T09:42:59+00:00",
1390
                        "userid": "koha",
1391
                    },
1371
                }
1392
                }
1372
            ]
1393
            ]
1373
        }
1394
        }
1374
- 

Return to bug 36627