File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -77,13 +77,13 @@ Snapshot testing
77
77
As our APIs evolve, we need to know when our changes introduce any breaking changes that might break
78
78
some of the clients of our GraphQL app.
79
79
80
- However, writing tests and replicate the same response we expect from our GraphQL application can be
80
+ However, writing tests and replicating the same response we expect from our GraphQL application can be a
81
81
tedious and repetitive task, and sometimes it's easier to skip this process.
82
82
83
83
Because of that, we recommend the usage of `SnapshotTest <https://github.com/syrusakbary/snapshottest/ >`_.
84
84
85
- SnapshotTest let us write all this tests in a breeze, as creates automatically the ``snapshots `` for us
86
- the first time the test is executed.
85
+ SnapshotTest lets us write all these tests in a breeze, as it automatically creates the ``snapshots `` for us
86
+ the first time the test are executed.
87
87
88
88
89
89
Here is a simple example on how our tests will look if we use ``pytest ``:
You can’t perform that action at this time.
0 commit comments