index.spec.js 232 B

12345678910
  1. import AnimalApi from "../index"
  2. describe('animal-api', ()=> {
  3. it('gets cats', ()=>{
  4. return AnimalApi.getCat()
  5. .then(res => {
  6. expect(res.imageSrc).not.toBeUndefined()
  7. })
  8. })
  9. })