diff --git a/application/views/view_log/qso.php b/application/views/view_log/qso.php index daeef76d..66152f81 100644 --- a/application/views/view_log/qso.php +++ b/application/views/view_log/qso.php @@ -422,7 +422,7 @@ config->item('use_auth') && ($this->session->userdata('user_type') >= 2)) || $this->config->item('use_auth') === FALSE) { ?>
-

+

@@ -764,4 +764,4 @@ var callsign = "COL_CALL; ?>"; - + \ No newline at end of file diff --git a/cypress/e2e/3-qso.cy.js b/cypress/e2e/3-qso.cy.js deleted file mode 100644 index f3d54852..00000000 --- a/cypress/e2e/3-qso.cy.js +++ /dev/null @@ -1,47 +0,0 @@ -// describe("Post QSO Input Form", () => { -// beforeEach(() => { -// cy.login(); -// }); - -// it("Submits a QSO", () => { -// cy.visit("index.php/qso?manual=1"); - -// cy.get('select[name="mode"]').select("USB"); -// cy.get('select[name="band"]').select("20m"); -// cy.get('#qso_input input[name="callsign"]').first().type("KS3CKC"); - -// // Submit the QSO -// cy.get("#qso_input").submit(); - -// // Check if the QSO was added to the log -// cy.visit("index.php/dashboard"); - -// cy.get("table > tbody > tr:first").within(() => { -// cy.get("td").eq(2).should("contain", "KS3CKC"); -// cy.get("td").eq(3).should("contain", "USB"); -// cy.get("td").eq(6).should("contain", "20m"); -// }); -// }); - -// it("Delete a QSO", () => { -// cy.visit("index.php/dashboard"); - -// // Click the link in the first row of the table to open the modal -// cy.get("table > tbody > tr:first").within(() => { -// cy.get("a").first().click(); -// }); - -// // Click the "Edit QSO" button -// cy.get("a").contains("Edit QSO").should("be.visible").click(); - -// // Click the delete button -// cy.get("a") -// .contains("Delete QSO") -// .scrollIntoView() -// .should("be.visible") -// .click(); - -// // Click the confirm delete button -// cy.get("button").contains("OK").should("be.visible").click(); -// }); -// });