There is no direct support for working with XPath in Cypress, you need to install 3rd party plugins:
Step 1: Use cypress xpath plugin using npm
$ npm install cypress-xpath
Step 2: Add following code in index.js
require('cypress-xpath')
Step 3: To use xpath use cy.xpath
cy.xpath('//ul[@class="todo-list"]//li')