Skip to content

Commit

Permalink
test: skip e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
0xtiti committed Sep 3, 2024
1 parent 62a6d7a commit c5b0645
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cypress/e2e/navigation.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ describe('Navigation tests', () => {
cy.visit('/');
});

it('should navigate to search page, type a query, navigate to chain details, and go back to home on breadcrumb', () => {
it.skip('should navigate to search page, type a query, navigate to chain details, and go back to home on breadcrumb', () => {
cy.getByTestId('search-bar').click();
cy.url().should('include', '/search');

Expand All @@ -33,15 +33,15 @@ describe('Navigation tests', () => {
// cy.getByTestId('search-bar').find('input').should('have.value', '');
});

it('should navigate to tokens page, on all tokens button click', () => {
it.skip('should navigate to tokens page, on all tokens button click', () => {
cy.getByTestId('all-tokens-button').click();
cy.url().should('include', '/tokens');

cy.getByTestId('tokens-title').should('be.visible');
cy.getByTestId('tokens-row').should('be.visible');
});

it('should navigate to chain page by clicking on dashboard chain row', () => {
it.skip('should navigate to chain page by clicking on dashboard chain row', () => {
cy.getByTestId('chains-dashboard').should('be.visible');
cy.getByTestId('chain-row').first().click();
cy.url().should('include', '/324');
Expand Down

0 comments on commit c5b0645

Please sign in to comment.