mirror of
https://github.com/flipperdevices/flipperzero-firmware.git
synced 2026-03-09 09:47:04 +01:00
29 lines
629 B
Python
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()
|