tests: functional: Assert app is not installed after uninstallation

Signed-off-by: Veiko Aasa <veiko17@disroot.org>
Reviewed-by: Sunil Mohan Adapa <sunil@medhas.org>
This commit is contained in:
Veiko Aasa 2022-09-03 17:04:15 +03:00 committed by Sunil Mohan Adapa
parent b2459312a9
commit 84eedfca03
No known key found for this signature in database
GPG Key ID: 43EA1CFF0AA7C5F2

View File

@ -701,4 +701,5 @@ class BaseAppTests:
def test_uninstall(self, session_browser):
"""Test that app can be uninstalled and installed back again."""
uninstall(session_browser, self.app_name)
assert not is_installed(session_browser, self.app_name)
install(session_browser, self.app_name)