diff --git a/frontend/cypress/e2e/project/project-view-kanban.spec.ts b/frontend/cypress/e2e/project/project-view-kanban.spec.ts index f338ea075..4da9ed2fe 100644 --- a/frontend/cypress/e2e/project/project-view-kanban.spec.ts +++ b/frontend/cypress/e2e/project/project-view-kanban.spec.ts @@ -35,17 +35,17 @@ function createSingleTaskInBucket(count = 1, attrs = {}) { } function createTaskWithBuckets(buckets, count = 1) { - const data = TaskFactory.create(count, { - project_id: 1, - }) - TaskBucketFactory.truncate() - data.forEach(t => TaskBucketFactory.create(1, { - task_id: t.id, - bucket_id: buckets[0].id, - project_view_id: buckets[0].project_view_id, - }, false)) + const data = TaskFactory.create(count, { + project_id: 1, + }) + TaskBucketFactory.truncate() + data.forEach(t => TaskBucketFactory.create(1, { + task_id: t.id, + bucket_id: buckets[0].id, + project_view_id: buckets[0].project_view_id, + }, false)) - return data + return data } describe('Project View Kanban', () => {