From 9e3a1f180044602b72e2f4b9db3746e21e2f4d3b Mon Sep 17 00:00:00 2001 From: kolaente Date: Tue, 24 Jun 2025 12:48:47 +0200 Subject: [PATCH] fix(test): formatting --- .../e2e/project/project-view-kanban.spec.ts | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) 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', () => {