Add forge selector probe comment to AppManagerTests
Intent: Mark the iOS test file with a temporary annotation indicating it is part of the Apple lane validation probe. This serves as a tracing breadcrumb for the `probe-apple-ios-lane` branch, making it easy to identify which files were touched during the lane-selection investigation.
Affected files: ios/Tests/AppManagerTests.swift
@@ -1,6 +1,8 @@
import XCTest
@testable import Pika
+// Temporary forge selector probe: iOS-only Apple lane validation.
+
private func makeTestState(rev: UInt64, toast: String? = nil) -> AppState {
A single-line comment is inserted at the top of ios/Tests/AppManagerTests.swift, immediately after the import block and before the first helper function:
// Temporary forge selector probe: iOS-only Apple lane validation.
Why this matters
- Traceability — The comment explicitly ties this file to the
probe-apple-ios-lanebranch, so reviewers can confirm the branch's scope at a glance. - Zero risk — No executable code is added or removed. The helper function
makeTestState(rev:toast:)and all existing tests remain untouched. - Cleanup expectation — The word Temporary signals that this annotation should be removed once the lane-selection probe is concluded and merged (or discarded).