tests(cypress): Basic editor tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2023-02-02 00:01:46 +01:00
parent 1ad6375f73
commit 1e9060b876
4 changed files with 99 additions and 14 deletions

View File

@@ -91,7 +91,7 @@ Cypress.Commands.add('createExampleBoard', ({ user, board }) => {
method: 'POST',
url: `${Cypress.env('baseUrl')}/index.php/apps/deck/api/v1.0/boards/${boardData.id}/stacks/${stackData.id}/cards`,
auth,
body: { title: card.title },
body: { title: card.title, description: card.description ?? '' },
})
}
})