From e1ab0c33fecda4e4d18c757c33bf9c7bf60f05f8 Mon Sep 17 00:00:00 2001 From: Tomas Cohen Arazi Date: Wed, 19 Apr 2023 09:19:29 -0300 Subject: [PATCH] Bug 33416: Fix Searchbar_spec.ts Signed-off-by: Tomas Cohen Arazi --- t/cypress/integration/ERM/Searchbar_spec.ts | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/t/cypress/integration/ERM/Searchbar_spec.ts b/t/cypress/integration/ERM/Searchbar_spec.ts index bf42ccc68e0..21bcc181f69 100644 --- a/t/cypress/integration/ERM/Searchbar_spec.ts +++ b/t/cypress/integration/ERM/Searchbar_spec.ts @@ -1,16 +1,10 @@ describe("Searchbar header changes", () => { - before(() => { - cy.fetch_initial_ERM_sys_pref_value(); - cy.set_ERM_sys_pref_value(true); - }); beforeEach(() => { cy.login(); cy.title().should("eq", "Koha staff interface"); - }); - - after(() => { - cy.reset_initial_ERM_sys_pref_value(); + cy.intercept("GET", "/cgi-bin/koha/svc/config/systempreferences/?pref=ERMModule", '{"value":"1"}'); + cy.intercept("GET", "/cgi-bin/koha/svc/config/systempreferences/?pref=ERMProviders", '{"value":"local"}'); }); it("Default option is agreements", () => { @@ -35,4 +29,4 @@ describe("Searchbar header changes", () => { cy.visit("/cgi-bin/koha/erm/eholdings/local/titles"); cy.get("#title_search_tab").parent().should("have.class", "active") }) -}) \ No newline at end of file +}) -- 2.34.1