Skip to content

Instantly share code, notes, and snippets.

@philsch
Created June 7, 2019 08:29
Show Gist options
  • Save philsch/cc201be2db5b31b7b322549e370aa24d to your computer and use it in GitHub Desktop.
Save philsch/cc201be2db5b31b7b322549e370aa24d to your computer and use it in GitHub Desktop.
Blogpost: Easy integration testing of GraphQL with Jest
// 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