Skip to content

Commit 63d2ea3

Browse files
committed
remove index test. not useful
1 parent 6a71eb4 commit 63d2ea3

File tree

2 files changed

+1
-9
lines changed

2 files changed

+1
-9
lines changed

pytest.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pytest]
2-
addopts = --browser chromium
2+
addopts = --browser chromium --headed

tests/test_app.py

-8
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,6 @@
22
from playwright.sync_api import expect
33

44

5-
def test_index(live_server, page):
6-
page.goto(url_for("main.index", _external=True))
7-
expect(page.get_by_role("heading", name="Planning considerations")).to_be_visible()
8-
expect(page.get_by_role("link", name="List of planning")).to_be_visible()
9-
expect(page.get_by_role("link", name="What we are working on An")).to_be_visible()
10-
expect(page.get_by_role("link", name="Breakdown of planning")).to_be_visible()
11-
12-
135
def test_add_consideration(live_server, page, questions):
146

157
page.goto(url_for("planning_consideration.considerations", _external=True))

0 commit comments

Comments
 (0)