From e4f87d2570301ff990655547d26ce4375596b0e3 Mon Sep 17 00:00:00 2001 From: Matt Blenkinsop Date: Mon, 16 Sep 2024 11:00:44 +0000 Subject: [PATCH] Bug 37929: Remove it.only from Agreements_spec Test plan: 1) Run the cypress tests for Agreements_spec.ts yarn cypress run --spec t/cypress/integration/ERM/Agreements_spec.ts 2) Only the Delete test will run 3) Apply patch and yarn build 4) Run test again, all tests should run --- t/cypress/integration/ERM/Agreements_spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/cypress/integration/ERM/Agreements_spec.ts b/t/cypress/integration/ERM/Agreements_spec.ts index 626bbb8f089..78a834c930a 100644 --- a/t/cypress/integration/ERM/Agreements_spec.ts +++ b/t/cypress/integration/ERM/Agreements_spec.ts @@ -555,7 +555,7 @@ describe("Agreement CRUD operations", () => { // AV's libs displayed // Tables for periods and users }); - it.only("Delete agreement", () => { + it("Delete agreement", () => { let agreement = cy.get_agreement(); let agreements = [agreement]; -- 2.39.3 (Apple Git-146)