From 5eec29d2dabfb7a08ed092032f8222f527cc5041 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 (cherry picked from commit 5a39823dbcf63101519413f3a47f4ffa39758155) Signed-off-by: Jacob O'Mara --- 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 bf42ccc68e..21bcc181f6 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.20.1