Prepare App Store 1.0 build 4

This commit is contained in:
2026-08-17 16:50:30 +02:00
parent f894d43eb6
commit 0b7c938b23
19 changed files with 191 additions and 62 deletions

View File

@@ -60,6 +60,20 @@ fn apple_sources_preserve_the_mobile_security_boundary() {
}
assert!(watch.contains("core.presentationAt"));
assert!(watch.contains("SecItemCopyMatching"));
assert!(app.contains("session.sendMessage(payload"));
assert!(app.contains("session.transferUserInfo(payload)"));
assert!(watch.contains("didReceiveMessage message"));
assert!(watch.contains("didReceiveUserInfo userInfo"));
}
#[test]
fn iphone_entry_editor_keeps_add_action_accessible_while_typing() {
let app = workspace_file("apple/Sources/App/IronStorageApp.swift");
assert!(app.contains("navigationItem.rightBarButtonItems = [save, add]"));
assert!(app.contains("tableView.keyboardDismissMode = .interactive"));
assert!(app.contains("field.returnKeyType = .done"));
assert!(app.contains("textField.resignFirstResponder()"));
assert!(!app.contains("inputAccessoryView = keyboardToolbar"));
}
#[test]