From 5c56df65a68467913dd5932787f2f125e982e5c0 Mon Sep 17 00:00:00 2001 From: Ana Carolina - QA - Tester - Automation Date: Sun, 29 Sep 2024 14:26:31 -0300 Subject: [PATCH] removendo only --- cypress/e2e/elements/links.cy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cypress/e2e/elements/links.cy.ts b/cypress/e2e/elements/links.cy.ts index d5c7c40..52ad5f6 100644 --- a/cypress/e2e/elements/links.cy.ts +++ b/cypress/e2e/elements/links.cy.ts @@ -11,7 +11,7 @@ beforeEach(() => { describe('Open new tab', () => { describe('Simple Link', () => { - it.only('Check FrontEnd (Opens New Tab)', () => { + it('Check FrontEnd (Opens New Tab)', () => { Links.getsimpleLink().then(($link) => { cy.visit(Links.getPropHref($link)); cy.url().should('be.equal', `${baseUrl}/`); @@ -42,6 +42,7 @@ describe('Open new tab', () => { Links.checkRedirectFrontHome(); }); }); + it('Check Backend (API)', () => { Links.getDynamicLink().then(($link) => { cy.request(Links.getPropHref($link)).as('request');