Created
June 7, 2019 08:29
-
-
Save philsch/cc201be2db5b31b7b322549e370aa24d to your computer and use it in GitHub Desktop.
Blogpost: Easy integration testing of GraphQL with Jest
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Jest Snapshot v1, https://goo.gl/fbAQLP | |
exports[`Getting shop items Retrieves the shop items in default order 1`] = ` | |
Object { | |
"data": Object { | |
"shopItems": Array [ | |
Object { | |
"category": "shoes", | |
"name": "Fancy Sneaker", | |
"size": "8", | |
}, | |
Object { | |
"category": "shorts", | |
"name": "Black shirt", | |
"size": "XL", | |
}, | |
], | |
}, | |
} | |
`; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment