Signed-off-by: Matt Bruce <mbrucedogs@gmail.com>

This commit is contained in:
Matt Bruce 2026-02-09 23:10:29 -06:00
parent 0ed1eee242
commit 660974ff8f
2 changed files with 3 additions and 24 deletions

View File

@ -997,6 +997,7 @@
}, },
"Debug mode: Purchase simulated!" : { "Debug mode: Purchase simulated!" : {
"comment" : "Announcement posted to VoiceOver when a premium purchase is simulated in debug mode.", "comment" : "Announcement posted to VoiceOver when a premium purchase is simulated in debug mode.",
"extractionState" : "stale",
"isCommentAutoGenerated" : true, "isCommentAutoGenerated" : true,
"localizations" : { "localizations" : {
"es-MX" : { "es-MX" : {
@ -1021,6 +1022,7 @@
}, },
"Debug mode: Restore simulated!" : { "Debug mode: Restore simulated!" : {
"comment" : "Accessibility announcement when restoring purchases in debug mode.", "comment" : "Accessibility announcement when restoring purchases in debug mode.",
"extractionState" : "stale",
"isCommentAutoGenerated" : true, "isCommentAutoGenerated" : true,
"localizations" : { "localizations" : {
"es-MX" : { "es-MX" : {
@ -1808,14 +1810,6 @@
} }
} }
}, },
"Onboarding Reset" : {
"comment" : "The title of an alert that confirms the onboarding state has been reset.",
"isCommentAutoGenerated" : true
},
"Onboarding will show again when you restart the app." : {
"comment" : "A message displayed in an alert when the \"Reset Onboarding\" button is tapped.",
"isCommentAutoGenerated" : true
},
"One Time" : { "One Time" : {
"comment" : "A description of a one-time purchase option.", "comment" : "A description of a one-time purchase option.",
"isCommentAutoGenerated" : true "isCommentAutoGenerated" : true
@ -2133,10 +2127,6 @@
} }
} }
}, },
"Reset Onboarding" : {
"comment" : "A button label that resets the onboarding state.",
"isCommentAutoGenerated" : true
},
"Restore Purchases" : { "Restore Purchases" : {
"comment" : "A button that restores purchases.", "comment" : "A button that restores purchases.",
"isCommentAutoGenerated" : true, "isCommentAutoGenerated" : true,
@ -2787,10 +2777,6 @@
} }
} }
}, },
"Show onboarding flow on next app launch" : {
"comment" : "A description of what the \"Reset Onboarding\" button does.",
"isCommentAutoGenerated" : true
},
"Shows a grid overlay to help compose your shot" : { "Shows a grid overlay to help compose your shot" : {
"comment" : "A toggle that enables or disables the rule of thirds grid overlay in the camera view.", "comment" : "A toggle that enables or disables the rule of thirds grid overlay in the camera view.",
"isCommentAutoGenerated" : true, "isCommentAutoGenerated" : true,

View File

@ -21,13 +21,6 @@ final class SelfieCamUITestsLaunchTests: XCTestCase {
func testLaunch() throws { func testLaunch() throws {
let app = XCUIApplication() let app = XCUIApplication()
app.launch() app.launch()
XCTAssertTrue(app.state == .runningForeground)
// Insert steps here to perform after app launch but before taking a screenshot,
// such as logging into a test account or navigating somewhere in the app
let attachment = XCTAttachment(screenshot: app.screenshot())
attachment.name = "Launch Screen"
attachment.lifetime = .keepAlways
add(attachment)
} }
} }