Bugzilla – Attachment 181711 Details for
Bug 38941
Convert the acquisitions menu to a Vue island
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 38941: Add a cypress test
Bug-38941-Add-a-cypress-test.patch (text/plain), 2.20 KB, created by
Matt Blenkinsop
on 2025-04-30 10:03:36 UTC
(
hide
)
Description:
Bug 38941: Add a cypress test
Filename:
MIME Type:
Creator:
Matt Blenkinsop
Created:
2025-04-30 10:03:36 UTC
Size:
2.20 KB
patch
obsolete
>From 3857189b51b3b4b5e6a5a81e17a50c31b63fc7d9 Mon Sep 17 00:00:00 2001 >From: Matt Blenkinsop <matt.blenkinsop@ptfs-europe.com> >Date: Tue, 21 Jan 2025 17:21:27 +0000 >Subject: [PATCH] Bug 38941: Add a cypress test > >--- > .../Islands/AcquisitionsMenu_spec.ts | 45 +++++++++++++++++++ > 1 file changed, 45 insertions(+) > create mode 100644 t/cypress/integration/Islands/AcquisitionsMenu_spec.ts > >diff --git a/t/cypress/integration/Islands/AcquisitionsMenu_spec.ts b/t/cypress/integration/Islands/AcquisitionsMenu_spec.ts >new file mode 100644 >index 00000000000..8d2413324db >--- /dev/null >+++ b/t/cypress/integration/Islands/AcquisitionsMenu_spec.ts >@@ -0,0 +1,45 @@ >+describe("Acquisitions menu", () => { >+ beforeEach(() => { >+ cy.login(); >+ cy.title().should("eq", "Koha staff interface"); >+ >+ cy.set_syspref("EDIFACT", 0); >+ cy.set_syspref("MarcOrderingAutomation", 0); >+ cy.visit("/cgi-bin/koha/acqui/acqui-home.pl"); >+ }); >+ >+ it("Should render a left menu", () => { >+ cy.get(".sidebar_menu").should("be.visible"); >+ cy.get(".sidebar_menu a").should("have.length", 14); >+ }); >+ >+ it("Should show/hide links based on sysprefs", () => { >+ cy.set_syspref("EDIFACT", 1).then(() => { >+ cy.reload(true); >+ cy.get(".sidebar_menu a").should("have.length", 17); >+ }); >+ }); >+ >+ it("Should show/hide links based on permissions", () => { >+ cy.get(".sidebar_menu").should("be.visible"); >+ >+ cy.query( >+ "UPDATE borrowers SET flags=2052 WHERE borrowernumber=51" >+ ).then(() => { >+ cy.reload(true); >+ cy.get(".sidebar_menu a").should("have.length", 8); >+ cy.query("UPDATE borrowers SET flags=1 WHERE borrowernumber=51"); >+ }); >+ }); >+ it("Should correctly apply the 'current' class", () => { >+ cy.get(".sidebar_menu").should("be.visible"); >+ >+ cy.get(".sidebar_menu a") >+ .contains("Acquisitions home") >+ .should("have.class", "current"); >+ cy.get(".sidebar_menu a").contains("Budgets").click(); >+ cy.get(".sidebar_menu a") >+ .contains("Budgets") >+ .should("have.class", "current"); >+ }); >+}); >-- >2.48.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 38941
:
176877
|
176878
|
178243
|
178244
|
181491
|
181492
|
181493
|
181626
|
181627
|
181628
|
181629
|
181711
|
181724
|
181725
|
181726