From dae8de6f95d28aaba402e42f134ebf650757e555 Mon Sep 17 00:00:00 2001 From: Thanh Do Date: Fri, 20 Dec 2024 10:50:02 +0700 Subject: [PATCH] Resolve comments --- .../actorName.cy.ts} | 11 ++--------- .../issueDPP.cy.ts | 2 +- 2 files changed, 3 insertions(+), 10 deletions(-) rename cypress/e2e/{simple_test/actorTesting.cy.ts => actor_content_test/actorName.cy.ts} (72%) rename cypress/e2e/{Function_test => issue_workflow_test}/issueDPP.cy.ts (98%) diff --git a/cypress/e2e/simple_test/actorTesting.cy.ts b/cypress/e2e/actor_content_test/actorName.cy.ts similarity index 72% rename from cypress/e2e/simple_test/actorTesting.cy.ts rename to cypress/e2e/actor_content_test/actorName.cy.ts index ff2e96d8..4ce6a68c 100644 --- a/cypress/e2e/simple_test/actorTesting.cy.ts +++ b/cypress/e2e/actor_content_test/actorName.cy.ts @@ -7,7 +7,6 @@ describe('Facility Links Test', () => { }); it('should verify all tags from the second match the expected texts', () => { - // Danh sách các text mong đợi, tương ứng với từ thẻ thứ 2 trở đi const expectedTexts = [ 'Orchard Facility', 'Packhouse Facility', @@ -17,24 +16,18 @@ describe('Facility Links Test', () => { 'General features', ]; - // Truy cập trang cy.visit('/'); - // Lấy tất cả các thẻ (trừ thẻ đầu tiên) cy.get('a').then(($aTags) => { - // Đảm bảo tổng số thẻ (trừ thẻ đầu) bằng với danh sách expectedTexts expect($aTags.length - 1).to.equal(expectedTexts.length); - // Lặp qua từng thẻ từ index = 1 (thẻ thứ 2 trở đi) $aTags.each((index, el) => { - if (index === 0) return; // Bỏ qua thẻ đầu tiên + if (index === 0) return; - // Lấy nội dung text của thẻ hiện tại cy.wrap(el) .invoke('text') .then((text) => { - // So sánh text với giá trị tương ứng trong expectedTexts - expect(text.trim()).to.equal(expectedTexts[index - 1]); // Trừ đi 1 vì bỏ qua thẻ đầu tiên + expect(text.trim()).to.equal(expectedTexts[index - 1]); }); }); }); diff --git a/cypress/e2e/Function_test/issueDPP.cy.ts b/cypress/e2e/issue_workflow_test/issueDPP.cy.ts similarity index 98% rename from cypress/e2e/Function_test/issueDPP.cy.ts rename to cypress/e2e/issue_workflow_test/issueDPP.cy.ts index 7e3ef2dd..e101ba28 100644 --- a/cypress/e2e/Function_test/issueDPP.cy.ts +++ b/cypress/e2e/issue_workflow_test/issueDPP.cy.ts @@ -1,5 +1,5 @@ -describe('Facility Links Test', () => { +describe('Issue DPP end-to-end testing flow', () => { beforeEach(() => { // Load app config JSON cy.fixture('app-config.json').then((data) => {