Skip to content

Instantly share code, notes, and snippets.

@kmagiera
Forked from barsumek/pokemonMock.js
Created November 22, 2018 13:36
Show Gist options
  • Select an option

  • Save kmagiera/3c371792c78422551f0f18bcf6130b7f to your computer and use it in GitHub Desktop.

Select an option

Save kmagiera/3c371792c78422551f0f18bcf6130b7f to your computer and use it in GitHub Desktop.
Detox your GraphQL: Mock the Pokemon's level
const defaultPokemon = {
Pokemon: () => ({
level: 10
})
};
const maxLvlPokemon = {
Pokemon: () => ({
level: 30
})
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment