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

(-)a/t/cypress/integration/KohaTable/Holdings_spec.ts (-3 / +3 lines)
Lines 136-142 describe("catalogue/detail/holdings_table", () => { Link Here
136
                not_for_loan_status: 0,
136
                not_for_loan_status: 0,
137
                course_item: null,
137
                course_item: null,
138
                cover_image_ids: [],
138
                cover_image_ids: [],
139
                _status: "available",
139
                _status: ["available"],
140
            },
140
            },
141
        }).then(items => {
141
        }).then(items => {
142
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
142
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
Lines 179-185 describe("catalogue/detail/holdings_table", () => { Link Here
179
                not_for_loan_status: 0,
179
                not_for_loan_status: 0,
180
                course_item: null,
180
                course_item: null,
181
                cover_image_ids: [],
181
                cover_image_ids: [],
182
                _status: "available",
182
                _status: ["available"],
183
            },
183
            },
184
        }).then(items => {
184
        }).then(items => {
185
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
185
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
Lines 287-292 describe("catalogue/detail/holdings_table", () => { Link Here
287
                not_for_loan_status: 0,
287
                not_for_loan_status: 0,
288
                course_item: null,
288
                course_item: null,
289
                cover_image_ids: [],
289
                cover_image_ids: [],
290
                _status: ["available"],
290
            },
291
            },
291
        }).then(items => {
292
        }).then(items => {
292
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
293
            cy.intercept("get", `/api/v1/biblios/${biblio_id}/items*`, {
293
- 

Return to bug 37334