Skip to content

Instantly share code, notes, and snippets.

@hypeJunction
Last active January 24, 2021 18:15
Show Gist options
  • Save hypeJunction/16465df35a9526c21d40ddd4a09bcb8d to your computer and use it in GitHub Desktop.
Save hypeJunction/16465df35a9526c21d40ddd4a09bcb8d to your computer and use it in GitHub Desktop.
import { REACT_APP_TODO_API_URL } from './constants.js';
cy.intercept({
method: 'GET',
url: new RegExp(`${REACT_APP_TODO_API_URL}`/v1/to-dos`)
}, {
fixture: 'todos.json`
})
{
"items": [{
"done": false,
"todo": "Buy coffee"
}, {
"done": true,
"todo": "Pay rent"
}],
"pagination": {
"perPage": 20,
"page": 1,
"totalItems": 2
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment