|
Lines 189-194
describe("catalogue/detail/holdings_table with items", () => {
Link Here
|
| 189 |
new RegExp(`"me.home_library_id":\\["${library_id}"\\]`) |
189 |
new RegExp(`"me.home_library_id":\\["${library_id}"\\]`) |
| 190 |
); |
190 |
); |
| 191 |
}); |
191 |
}); |
|
|
192 |
|
| 193 |
cy.get(`#${table_id}_wrapper input.dt-input`).clear(); |
| 194 |
cy.wait("@searchItems"); |
| 195 |
cy.get(`#${table_id}_wrapper input.dt-input`).type("["); |
| 196 |
cy.wait("@searchItems").then(interception => { |
| 197 |
const q = interception.request.query.q; |
| 198 |
expect(q).to.match( |
| 199 |
new RegExp(`"me.home_library_id":{"like":"%\\[%"}`) |
| 200 |
); |
| 201 |
}); |
| 192 |
}); |
202 |
}); |
| 193 |
}); |
203 |
}); |
| 194 |
|
204 |
|
| 195 |
- |
|
|