Integration tests

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2020-12-30 17:02:25 +01:00
parent db2ceae720
commit 609a7b275f
11 changed files with 438 additions and 206 deletions

View File

@@ -0,0 +1,19 @@
Feature: File sharing
Background:
Given user "admin" exists
And user "user0" exists
And user "user1" exists
#And user "user2" exists
#Given group "group0" exists
#And group "group1" exists
#Given user "user1" belongs to group "group1"
Scenario: Share a file with a card
Given Logging in using web as "admin"
And creates a board named "Shared board" with color "fafafa"
And shares the board with user "user1"
Then the HTTP status code should be "200"
Given Logging in using web as "user1"
And create a stack named "Stack"
And create a card named "Test"