File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed
tests/playwright/shiny/shiny-express/page_default Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -94,13 +94,16 @@ install-playwright:
94
94
install-trcli :
95
95
which trcli || pip install trcli
96
96
97
+ install-rsconnect : # # install the main version of rsconnect till pypi version supports shiny express
98
+ pip install git+https://github.com/rstudio/rsconnect-python.git#egg=rsconnect-python
99
+
97
100
playwright-shiny : install-playwright # # end-to-end tests with playwright
98
101
pytest tests/playwright/shiny/$(SUB_FILE )
99
102
100
103
playwright-examples : install-playwright # # end-to-end tests on examples with playwright
101
104
pytest tests/playwright/examples
102
105
103
- playwright-deploys : install-playwright # # end-to-end tests on deploys with playwright
106
+ playwright-deploys : install-playwright install-rsconnect # # end-to-end tests on deploys with playwright
104
107
pytest tests/playwright/deploys/$(SUB_FILE ) -s
105
108
106
109
testrail-junit : install-playwright install-trcli # # end-to-end tests with playwright and generate junit report
Original file line number Diff line number Diff line change 28
28
29
29
with layout .column (width = 6 ):
30
30
# check height is below 300px - bounding box
31
- with layout .navset_card_tab (id = "express_navset_card_tab" ):
31
+ with layout .navset_card (id = "express_navset_card_tab" , type = "tab " ):
32
32
with layout .nav (title = "Two" ):
33
33
...
34
34
35
35
36
36
with layout .column (width = 6 ):
37
37
with layout .row ():
38
- with layout .navset_tab (id = "express_navset_tab" ):
38
+ with layout .navset (id = "express_navset_tab" , type = "tab " ):
39
39
for fn_txt , fn in [
40
40
("pre" , layout .pre ),
41
41
("div" , layout .div ),
Original file line number Diff line number Diff line change 3
3
from utils .express_utils import verify_express_page_default
4
4
5
5
6
- def test_express_accordion (page : Page , local_app : ShinyAppProc ) -> None :
6
+ def test_page_default (page : Page , local_app : ShinyAppProc ) -> None :
7
7
page .goto (local_app .url )
8
8
verify_express_page_default (page )
You can’t perform that action at this time.
0 commit comments