-
Seething this crash, full report in here:
https://github.com/pytest-dev/pytest/issues/3672
Once snapshottest is uninstalled (even of not in use, as in the example provided) this does not happen.
…
-
e.g.
test case
```
def test_f(snapshot):
x = {}
snapshot.assert_match(x) # should be {}
x["a"] = 1
snapshot.assert_match(x)
```
snapshot
```
snapshots['test_f 1'] = …
-
### Current Situation
Several tests have been deactivated over the years for different reasons, such as temporary incompatibilities with a specific platform/OS, bugs in the code, indeterministic beha…
-
generated snapshot:
snapshots['test_foo 1'] = 'test'
snapshots['test_foo 10'] = 'test'
snapshots['test_foo 11'] = 'test'
.
.
.
snapshots['test_foo 2'] = 'test'
.
.
.
Is there a way …
-
Hi, I am trying to make use of this awesome library in a tvOS project. As result of which I am getting a really weird result.
It seems that the screenshots that I am getting from the tests are bein…
-
### What happened?
If I am using Tuist to generate schemes for targets that reside in my SPM package, I encounter a strange behavior where the scheme for the respective target is correctly generated,…
-
Right now snapshots are stored in a preconfigured `snapshots/` directory — it would be nice if this was customizable, especially if an existing directory with the same name exists.
-
**Describe the bug**
I'm using SnapshotTesting in a SwiftUI iOS project.
I wrap a SwiftUI view under test in a `UIHostingController`and then pass the hosting controller into the `assertSnapshot` met…
-
I would like to be able to just run the snapshot tests and not also the unit tests. On my project's CI we have parallel build workflows to run verifications and tests and I would like the snapshot tes…
-
I'm using this plugin to upgrade xcodeproj file, but it seems will add `-lc++` flag to Tests scheme.
[Use `rnpm upgrade`, it will add `lc++` to Tests scheme.](https://github.com/jhen0409/react-native…