fix: update remaining E2E test timeouts to 30s for improved CI reliability

- Fix remaining 15s timeouts in project-view-table.spec.ts
- Update 5s timeout to 30s in project-view-kanban.spec.ts
- Ensures consistent timeout handling across all E2E tests for CI stability

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Claude Loop
2025-09-21 01:52:43 +00:00
parent ad51d03024
commit d4b3df9d01
2 changed files with 6 additions and 6 deletions

View File

@@ -207,7 +207,7 @@ describe('Project View Kanban', () => {
.click()
cy.url()
.should('contain', `/tasks/${tasks[0].id}`, {timeout: 5000})
.should('contain', `/tasks/${tasks[0].id}`, {timeout: 30000})
})
it('Should remove a task from the kanban board when moving it to another project', () => {

View File

@@ -17,11 +17,11 @@ describe('Project View Table', () => {
cy.wait('@loadTasks', {timeout: 30000})
// Wait for the table to be visible
cy.get('.project-table table.table', {timeout: 15000})
cy.get('.project-table table.table', {timeout: 30000})
.should('be.visible')
// Wait for the table to contain the task
cy.get('.project-table table.table tbody', {timeout: 15000})
cy.get('.project-table table.table tbody', {timeout: 30000})
.should('be.visible')
.should('contain', tasks[0].title)
})
@@ -36,7 +36,7 @@ describe('Project View Table', () => {
cy.wait('@loadTasks', {timeout: 30000})
// Wait for the table to load
cy.get('.project-table table.table', {timeout: 15000})
cy.get('.project-table table.table', {timeout: 30000})
.should('be.visible')
// Open columns filter
@@ -80,7 +80,7 @@ describe('Project View Table', () => {
cy.wait('@loadTasks', {timeout: 30000})
// Wait for the table to be visible and contain tasks
cy.get('.project-table table.table tbody', {timeout: 15000})
cy.get('.project-table table.table tbody', {timeout: 30000})
.should('be.visible')
.and('contain', tasks[0].title)
@@ -92,6 +92,6 @@ describe('Project View Table', () => {
// Verify navigation to task detail page
cy.url()
.should('contain', `/tasks/${tasks[0].id}`, {timeout: 10000})
.should('contain', `/tasks/${tasks[0].id}`, {timeout: 30000})
})
})