https://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=37707 --- Comment #70 from Lucas Gass (lukeg) <lucas@bywatersolutions.com> --- (In reply to Jonathan Druart from comment #69)
t/cypress/integration/Circulation/bookingsModalDatePicker_spec.ts is badly written, obviously by AI (not advertised...)
1. 11 sql: "UPDATE systempreferences SET value = '1' WHERE variable = 'RESTBasicAuth'",
not needed
2. 30 sql: "UPDATE items SET bookable = 1, itype = 'BK', homebranch = 'CPL', enumchron = 'A', dateaccessioned = '2024-12-03' WHERE itemnumber = ?",
We should not do that, but build the library instead.
3. 1316 return cy.task("buildSampleObject", { 1329 return cy.task("query", { 1330 sql: `INSERT INTO borrowers (borrowernumber, firstname, surname, cardnumber, categorycode, branchcode, dateofbirth) 1331 VALUES (?, ?, ?, ?, ?, ?, ?)`,
There is insertSamplePatron. Or insertObject, but the INSERT query here is not the way we write Cypress tests.
4. 1348 sql: `INSERT INTO bookings (biblio_id, patron_id, item_id, pickup_library_id, start_date, end_date, status)
Added several times: then you need to write the code to generate bookings from mockData
Do we need a follow-up bug to address this? bookingsModalDatePicker_spec.ts is currently failing in 26.05.x -- You are receiving this mail because: You are watching all bug changes.