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

(-)a/t/cypress/integration/KohaTable/Holdings_spec.ts (-3 / +2 lines)
Lines 208-214 describe("catalogue/detail/holdings_table with items", () => { Link Here
208
                    // Filters are not displayed
208
                    // Filters are not displayed
209
                    cy.get(`#${table_id} thead tr`).should("have.length", 1);
209
                    cy.get(`#${table_id} thead tr`).should("have.length", 1);
210
210
211
                    cy.get(`#${table_id} th`).contains("Status");
211
                    cy.get(`#${table_id} th`).contains("Barcode");
212
                    cy.get(`#${table_id} th`)
212
                    cy.get(`#${table_id} th`)
213
                        .contains("URL")
213
                        .contains("URL")
214
                        .should("not.exist");
214
                        .should("not.exist");
Lines 223-229 describe("catalogue/detail/holdings_table with items", () => { Link Here
223
                    // Filters are displayed
223
                    // Filters are displayed
224
                    cy.get(`#${table_id} thead tr`).should("have.length", 2);
224
                    cy.get(`#${table_id} thead tr`).should("have.length", 2);
225
225
226
                    cy.get(`#${table_id} th`).contains("Status");
226
                    cy.get(`#${table_id} th`).contains("Barcode");
227
                    cy.get(`#${table_id} th`)
227
                    cy.get(`#${table_id} th`)
228
                        .contains("URL")
228
                        .contains("URL")
229
                        .should("not.exist");
229
                        .should("not.exist");
230
- 

Return to bug 42090