UI Feature - Add watch in "paused" state, saving then unpauses (#779)

This commit is contained in:
dgtlmoon
2022-07-28 12:13:26 +02:00
committed by GitHub
parent b1c51c0a65
commit 5bd9eaf99d
10 changed files with 60 additions and 25 deletions

View File

@@ -36,7 +36,7 @@ def test_check_notification(client, live_server):
# Add our URL to the import page
test_url = url_for('test_endpoint', _external=True)
res = client.post(
url_for("form_watch_add"),
url_for("form_quick_watch_add"),
data={"url": test_url, "tag": ''},
follow_redirects=True
)
@@ -172,7 +172,7 @@ def test_notification_validation(client, live_server):
# Add our URL to the import page
test_url = url_for('test_endpoint', _external=True)
res = client.post(
url_for("form_watch_add"),
url_for("form_quick_watch_add"),
data={"url": test_url, "tag": 'nice one'},
follow_redirects=True
)