You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> ⚠️ Warning: Carthage instructs you to drag frameworks into your Xcode project. Xcode may automatically attempt to link these frameworks to your app target. `SnapshotTesting.framework` is only compatible with test targets, so when you first add it to your project:
@@ -179,7 +179,7 @@ If your project uses [CocoaPods](https://cocoapods.org), add the pod to any appl
179
179
180
180
```ruby
181
181
target 'MyAppTests'do
182
-
pod 'SnapshotTesting', '~> 1.8.1'
182
+
pod 'SnapshotTesting', '~> 1.9.0'
183
183
end
184
184
```
185
185
@@ -195,7 +195,10 @@ end
195
195
-**Supports any platform that supports Swift.** Write snapshot tests for iOS, Linux, macOS, and tvOS.
196
196
-**SceneKit, SpriteKit, and WebKit support.** Most snapshot testing libraries don't support these view subclasses.
197
197
-**`Codable` support**. Snapshot encodable data structures into their [JSON](Documentation/Available-Snapshot-Strategies.md#json) and [property list](Documentation/Available-Snapshot-Strategies.md#plist) representations.
198
-
-**Custom diff tool integration**.
198
+
-**Custom diff tool integration**. Configure failure messages to print diff commands for [Kaleidoscope](https://kaleidoscope.app) (or your diff tool of choice).
199
+
```swift
200
+
SnapshotTesting.diffTool="ksdiff"
201
+
```
199
202
200
203
## Plug-ins
201
204
@@ -209,6 +212,8 @@ end
209
212
210
213
- [AccessibilitySnapshotColorBlindness](https://github.com/Sherlouk/AccessibilitySnapshotColorBlindness) adds snapshot strategies for color blindness simulation on iOS views, view controllers and images.
211
214
215
+
- [swift-snapshot-testing-stitch](https://github.com/Sherlouk/swift-snapshot-testing-stitch/) adds the ability to stitch multiple UIView's or UIViewController's together in a single test.
216
+
212
217
Have you written your own SnapshotTesting plug-in? [Add it here](https://github.com/pointfreeco/swift-snapshot-testing/edit/master/README.md) and submit a pull request!
0 commit comments