Skip to content

Commit

Permalink
Add a wait time to e2e search test
Browse files Browse the repository at this point in the history
  • Loading branch information
kasbah committed Sep 23, 2024
1 parent 7ab6c2f commit 2799f46
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion e2e/cypress/e2e/multiProject.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ describe('Multi project page', () => {
})
})

it('should render the details from multi project in kitspace.yaml', () => {
it.only('should render the details from multi project in kitspace.yaml', () => {
const user = getFakeUser()

// Migrate the multiproject repo
Expand All @@ -189,6 +189,8 @@ describe('Multi project page', () => {
// Search for the project
cy.get('[data-cy=search-field] > input').type(user.username)

cy.wait(1000)

// Click on a multiproject project card
cy.get('[data-cy=project-card]')
.first()
Expand Down

0 comments on commit 2799f46

Please sign in to comment.