Skip to content

Commit

Permalink
removendo only
Browse files Browse the repository at this point in the history
  • Loading branch information
feroline committed Sep 29, 2024
1 parent 2c55ef2 commit 5c56df6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion cypress/e2e/elements/links.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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}/`);
Expand Down Expand Up @@ -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');
Expand Down

0 comments on commit 5c56df6

Please sign in to comment.