1
0
mirror of https://github.com/nicoverbruggen/phpmon.git synced 2026-03-31 16:50:09 +02:00

♻️ Add tracked testables

This commit is contained in:
2026-02-24 16:56:41 +01:00
parent c16fd1589f
commit b58f10a063
5 changed files with 150 additions and 3 deletions

View File

@@ -50,6 +50,16 @@ final class MainMenuTest: UITestCase {
app.mainMenuItem(withText: "mi_view_onboarding".localized).click()
}
final func test_can_open_command_history() throws {
let app = launch(openMenu: true)
app.mainMenuItem(withText: "mi_other".localized).hover()
app.mainMenuItem(withText: "mi_view_command_history".localized).click()
assertExists(app.windows["command_history.title".localized], 2.0)
Thread.sleep(forTimeInterval: 5)
}
final func test_can_open_about() throws {
let app = launch(openMenu: true)
app.mainMenuItem(withText: "mi_about".localized).click()