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

(-)a/t/cypress/integration/Agreements_spec.ts (-1 / +1 lines)
Lines 119-130 function get_licenses_to_relate() { Link Here
119
describe("Agreement CRUD operations", () => {
119
describe("Agreement CRUD operations", () => {
120
    before(() => {
120
    before(() => {
121
        cy.fetch_initial_ERM_sys_pref_value();
121
        cy.fetch_initial_ERM_sys_pref_value();
122
        cy.set_ERM_sys_pref_value(true);
122
    });
123
    });
123
124
124
    beforeEach(() => {
125
    beforeEach(() => {
125
        cy.login("koha", "koha");
126
        cy.login("koha", "koha");
126
        cy.title().should("eq", "Koha staff interface");
127
        cy.title().should("eq", "Koha staff interface");
127
        cy.set_ERM_sys_pref_value(true);
128
    });
128
    });
129
129
130
    after(() => {
130
    after(() => {
(-)a/t/cypress/integration/Licenses_spec.ts (-1 / +1 lines)
Lines 35-46 function get_license() { Link Here
35
describe("License CRUD operations", () => {
35
describe("License CRUD operations", () => {
36
    before(() => {
36
    before(() => {
37
        cy.fetch_initial_ERM_sys_pref_value();
37
        cy.fetch_initial_ERM_sys_pref_value();
38
        cy.set_ERM_sys_pref_value(true);
38
    });
39
    });
39
40
40
    beforeEach(() => {
41
    beforeEach(() => {
41
        cy.login("koha", "koha");
42
        cy.login("koha", "koha");
42
        cy.title().should("eq", "Koha staff interface");
43
        cy.title().should("eq", "Koha staff interface");
43
        cy.set_ERM_sys_pref_value(true);
44
    });
44
    });
45
45
46
    after(() => {
46
    after(() => {
(-)a/t/cypress/integration/Packages_spec.ts (-1 / +1 lines)
Lines 26-37 function get_package() { Link Here
26
describe("Package CRUD operations", () => {
26
describe("Package CRUD operations", () => {
27
    before(() => {
27
    before(() => {
28
        cy.fetch_initial_ERM_sys_pref_value();
28
        cy.fetch_initial_ERM_sys_pref_value();
29
        cy.set_ERM_sys_pref_value(true);
29
    });
30
    });
30
31
31
    beforeEach(() => {
32
    beforeEach(() => {
32
        cy.login("koha", "koha");
33
        cy.login("koha", "koha");
33
        cy.title().should("eq", "Koha staff interface");
34
        cy.title().should("eq", "Koha staff interface");
34
        cy.set_ERM_sys_pref_value(true);
35
    });
35
    });
36
36
37
    after(() => {
37
    after(() => {
(-)a/t/cypress/integration/Titles_spec.ts (-2 / +1 lines)
Lines 69-80 function get_packages_to_relate() { Link Here
69
describe("Title CRUD operations", () => {
69
describe("Title CRUD operations", () => {
70
    before(() => {
70
    before(() => {
71
        cy.fetch_initial_ERM_sys_pref_value();
71
        cy.fetch_initial_ERM_sys_pref_value();
72
        cy.set_ERM_sys_pref_value(true);
72
    });
73
    });
73
74
74
    beforeEach(() => {
75
    beforeEach(() => {
75
        cy.login("koha", "koha");
76
        cy.login("koha", "koha");
76
        cy.title().should("eq", "Koha staff interface");
77
        cy.title().should("eq", "Koha staff interface");
77
        cy.set_ERM_sys_pref_value(true);
78
    });
78
    });
79
79
80
    after(() => {
80
    after(() => {
81
- 

Return to bug 32131