1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2025-08-07 12:00:09 +02:00

🚀 Version 7.0

This commit is contained in:
2024-02-11 21:35:40 +01:00
98 changed files with 2403 additions and 943 deletions

View File

@ -54,6 +54,16 @@ final class MainMenuTest: UITestCase {
app.mainMenuItem(withText: "mi_about".localized).click()
}
final func test_can_open_config_editor() throws {
let app = launch(openMenu: true)
app.buttons["phpConfigButton"].click()
Thread.sleep(forTimeInterval: 0.5)
assertExists(app.staticTexts["confman.title".localized], 1)
}
final func test_can_open_settings() throws {
let app = launch(openMenu: true)
app.mainMenuItem(withText: "mi_preferences".localized).click()