Files
flipperzero-firmware/scripts/flippigator/testing/test_settings.py

29 lines
629 B
Python

import os
import time
import pytest
from flippigator.case import BaseCase
from termcolor import colored
os.system("color")
@pytest.mark.settings
class TestSettings(BaseCase):
@pytest.mark.smoke
def test_settings_menu(self, nav):
nav.settings.go_into()
menu = nav.get_menu_list()
menu_ref = [
"Bluetooth",
"LCD and Notifications",
"Storage",
"Power",
"Desktop",
"Passport",
"System",
"About",
]
assert menu == menu_ref, "Settings menu list is wrong"
nav.go_to_main_screen()