From 51a18f07bc48cac85e5ba95a939abab85efcddf6 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 24 Mar 2021 22:47:32 +0100 Subject: [PATCH] Fix bucket test fixture when moving tasks between lists test --- cypress/integration/list/list.spec.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/cypress/integration/list/list.spec.js b/cypress/integration/list/list.spec.js index 7b39104c9..a5abf7d72 100644 --- a/cypress/integration/list/list.spec.js +++ b/cypress/integration/list/list.spec.js @@ -410,8 +410,11 @@ describe('Lists', () => { .should('contain', `/tasks/${tasks[0].id}`) }) - it('Should remove a task from the kanban board when moving it to another list', () => { + it.only('Should remove a task from the kanban board when moving it to another list', () => { const lists = ListFactory.create(2) + BucketFactory.create(2, { + list_id: '{increment}', + }) const tasks = TaskFactory.create(5, { id: '{increment}', list_id: 1,