Skip to content

Instantly share code, notes, and snippets.

@KVeitch
Last active October 14, 2019 18:32
Show Gist options
  • Save KVeitch/f256d3f2211ce705dcfee62b3b2a6733 to your computer and use it in GitHub Desktop.
Save KVeitch/f256d3f2211ce705dcfee62b3b2a6733 to your computer and use it in GitHub Desktop.

successful Fetch

    window.fetch = (url) =>{  
      return Promise.resolve({  
        json:()=> Promise.resolve({  
          slip:{advice:"Don't eat yellow snow"}  
        })  
      })  
    };  

Rejected fetch

```
window.fetch = (url) =>{  
  return Promise.reject(  'Woops'  )  
};  

```
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment