Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions dp_wizard/images/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gitignore-*
7 changes: 7 additions & 0 deletions tests/test_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,18 @@
for_the_demo = "For the demo, we'll imagine"


def screenshot(page, name):
page.screenshot(
path=root_path / f"dp_wizard/images/gitignore-{name}.png", full_page=True
)


def test_cloud_app(page: Page, cloud_app: ShinyAppProc): # pragma: no cover
page.goto(cloud_app.url)
expect(page).to_have_title("DP Wizard")
expect(page.get_by_text("Choose Public CSV")).not_to_be_visible()
expect(page.get_by_text("CSV Column Names")).to_be_visible()
screenshot(page, "cloud-select")


def test_qa_app(page: Page, qa_app: ShinyAppProc): # pragma: no cover
Expand Down
Loading