From ad1a31a13ccd4402c2d952e5395fbfa53540c0fc Mon Sep 17 00:00:00 2001 From: Vishvamsinh Vaghela Date: Fri, 24 Nov 2023 10:06:38 +0530 Subject: [PATCH] timeout issue --- cypress/test/pages/community/dashboard.cy.js | 27 +++++++++----------- 1 file changed, 12 insertions(+), 15 deletions(-) diff --git a/cypress/test/pages/community/dashboard.cy.js b/cypress/test/pages/community/dashboard.cy.js index a01fcaf0e27..da33c1cc006 100644 --- a/cypress/test/pages/community/dashboard.cy.js +++ b/cypress/test/pages/community/dashboard.cy.js @@ -1,31 +1,28 @@ import MockApp from "../../../utils/MockApp"; import DashboardHome from "../../../../pages/community/dashboard"; import Header from "../../../../components/dashboard/Header"; -import { mount } from '@cypress/react'; +import { mount } from '@cypress/react' +describe('Integration Test for Dashboard ', () => { -describe('Integration Test for Dashboard', () => { - it('should filter GoodFirstIssues and check dashboard render', () => { + it('should filter GoodFirstIssues and check dashboard render ', () => { mount( ); - // Click on the first filter option - cy.get(Header).should('exist'); - cy.contains('AsyncAPI - Dashboard'); + cy.get(Header).should('exist') + cy.contains('AsyncAPI - Dashboard') cy.get('[data-testid="Filters-img-container"]').click({ force: true }); cy.get('[data-testid="Filter-menu"]').within(() => { cy.get('[data-testid="Select-form"]').eq(0).select('asyncapi/generator', { force: true }); - cy.get('[data-testid="Select-form"]').eq(1).select('docs'); + cy.get('[data-testid="Select-form"]').eq(1).select('docs') }); - - // Check if selected options are displayed + //check if selected is only displayed cy.contains('asyncapi/generator'); - cy.contains('docs'); - - // Check if options that should not be selected are not displayed - cy.get('[data-testid="Filter-menu"]').should('not.contain', 'asyncapi/community'); - cy.get('[data-testid="Filter-menu"]').should('not.contain', 'javascript'); + cy.contains('docs') + //check if this is not selected options are not displayed + cy.should('not.contain', 'asyncapi/community'); + cy.should('not.contain', 'javascript'); }); -}); +}); \ No newline at end of file