An all-in-one iOS snapshot testing solution.
Emerge handles the heavy lifting of generating, diffing and hosting the snapshots for each build, allowing you to focus on building beautiful UI components.
- Automatically generate snapshots of SwiftUI previews.
- Support for color scheme/orientation.
- Swift package for easy local validation.
See the documentation for how to set up snapshot testing for your app.
PreviewGallery
is an interactive UI built on top of snapshot extraction. It turns your SwiftUI previews into a gallery of components and features you can access from your application. Xcode is not required to view the previews. You can use it to preview individual components (buttons/rows/icons/etc)
or even entire interactive features.
The public API of PreviewGallery is a single SwiftUI View
named PreviewGallery
. Displaying this view gives you access to the full gallery. For example, you could add a button with navigation like this:
import SwiftUI
import PreviewGallery
NavigationLink("Open Gallery") { PreviewGallery() }
Use this Swift Package for locally debugging your views snapshots. You’ll need a UI test target that imports the SnapshottingTests
and Snapshotting
products from this package. Create a test that inherits from PreviewTest
like this:
import Snapshotting
import SnapshottingTests
class MyPreviewTest: PreviewTest {
override func getApp() -> XCUIApplication {
return XCUIApplication()
}
override func snapshotPreviews() -> [String]? {
return nil
}
}
Note that there are no test functions; they are automatically added at runtime by PreviewTest
. You can return a list of previews from the snapshotPreviews()
function based on what preview you are trying to locally validate. The previews will be added as attachements in Xcode’s test results. The test must be run on an iOS simulator (not device).
Xcode 15 accessibility audits can also be run locally on any preview. By default they will use all audit types. To customize the behavior you can override the following functions in your test:
override func enableAccessibilityAudit() -> Bool {
true
}
@available(iOS 17.0, *)
override func auditType() -> XCUIAccessibilityAuditType {
return .all
}
@available(iOS 17.0, *)
override func handle(_ issue: XCUIAccessibilityAuditIssue) -> Bool {
return false
}
See the demo app for a full example.