Skip to content

Commit 8318c61

Browse files
committed
Added basic test coverage for content tree
1 parent 62c2de9 commit 8318c61

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
@IbexaOSS @IbexaHeadless @IbexaCommerce @IbexaExperience @javascript @contenttree
2+
Feature: Content tree basic operations
3+
4+
Scenario: It is possible to display items on Content tree
5+
Given I create "article" Content items
6+
| title | short_title | parentPath | language |
7+
| Article1 | art1 | root | eng-GB |
8+
| Article2 | art2 | root | eng-GB |
9+
| Article3 | art3 | root | eng-GB |
10+
And I am logged as admin
11+
And I'm on Content view Page for "root/art1"
12+
13+
Scenario: New Content item can be created under chosen nested node
14+
Given I am logged as admin
15+
And I'm on Content view Page for "root/art1"
16+
When I start creating a new content "Article"
17+
And I set content fields
18+
| label | value |
19+
| Title | Arttest |
20+
| Short title | arttest |
21+
| Intro | TestArticleIntro |
22+
And I perform the "Publish" action
23+
And I should be on Content view Page for "root/art1/arttest"
24+
25+

0 commit comments

Comments
 (0)