-
Updated
Jun 21, 2022 - Swift
snapshot-testing
Here are 215 public repositories matching this topic...
-
Updated
Jun 17, 2022 - C#
-
Updated
Sep 21, 2021 - JavaScript
-
Updated
May 9, 2022 - Swift
-
Updated
Jun 22, 2022 - Swift
-
Updated
Jun 21, 2022 - C#
-
Updated
Jun 16, 2022 - PHP
-
Updated
Jun 1, 2022 - JavaScript
Specifically the Swift version of the snapshot method in the iOSSnapshotTestCase subspec. The Objective-C version of this behaves correctly.
To reproduce:
func testView() {
let view = UIView(frame: .init(x: 0, y: 0, width: 100, height: 100))
SnapshotVerifyWithInvertedColors(view, identifier: "someIdentifier")
}When run in record mode, this should produce a referen
-
Updated
Aug 17, 2018 - JavaScript
-
Updated
Feb 25, 2022 - C++
-
Updated
Jun 17, 2022 - Java
-
Updated
Apr 5, 2022 - Swift
The built in error message is very opaque (necessary because it has to be generic) but users can likely provide a more helpful friendly message customised to their tests (or e.g. when the diff just isn't useful). Therefore an option to customise this message would be useful.
This would only really be usable once #28 is implemented.
-
Updated
Jun 2, 2022 - Python
-
Updated
Jun 9, 2022 - JavaScript
-
Updated
Jun 23, 2022 - Common Lisp
-
Updated
Feb 11, 2022 - TypeScript
-
Updated
Mar 27, 2022 - Reason
-
Updated
Jun 22, 2022 - C#
-
Updated
Jun 21, 2022 - JavaScript
-
Updated
Nov 17, 2021 - JavaScript
-
Updated
Oct 25, 2021 - TypeScript
-
Updated
Jun 23, 2022 - Kotlin
-
Updated
Apr 23, 2022 - Python
-
Updated
Jan 25, 2022 - TypeScript
Improve this page
Add a description, image, and links to the snapshot-testing topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the snapshot-testing topic, visit your repo's landing page and select "manage topics."
While there are several overloads of the
Add()method havingFunc<Task> callbackparameter, the ones acceptingFunc<object, Task> callbackorFunc<TValue, Task> callbackare just missing - the non-async versions usingAction<object> callbackandAction<TValue> callbackexist, though.