Finding Cypress specs with tests that make specific network calls.
How do you pick the tests to run? Do you run the changed specs first? Run tests that visit a particular page? Pick tests using test tags? This blog post will show yet another way of picking end-to-end Cypress tests to execute: by the network calls the tests make.
We can track the network calls each test makes using the super-powerful and awesome cy.intercept command:
let pathname = parsed.pathname // remove the random part of the pathname if (/\/todos\/\d+/.test(pathname)) { pathname = '/todos/:id' } console.log('intercepted', method, pathname) }, ) })
We can see the intercepted network calls in the DevTools console
We need to store these API calls somewhere. If you are using my plugin cypress-visited-urls it exposes a static method Cypress.addVisitedTestEvent that you can use to send custom events. The plugin stores these events and even keeps track of the event counts for each test.
beforeEach(function () { // this method comes from the plugin // https://github.com/bahmutov/cypress-visited-urls if (Cypress.addVisitedTestEvent) { cy.intercept( { resourceType: 'xhr', }, (req) => { const method = req.method const parsed = newURL(req.url)
let pathname = parsed.pathname // remove the random part of the pathname if (/\/todos\/\d+/.test(pathname)) { pathname = '/todos/:id' } console.log('intercepted', method, pathname)
const debug = require('debug')('called-urls-examples') const core = require('@actions/core') const arg = require('arg') const args = arg({ // HTTP method name, case insensitive like "GET" '--method': String, // pathname, case sensitive like "/todos/:id" '--path': String, // output a list of specs or a table, list is the default '--output': String, // name of the GHA output, like "foundSpecs" '--set-gha-outputs': String, // limit the number of results, default is Infinity '--max': Number, }) debug('args', args)
// HTTP method is case-insensitive const method = (args['--method'] || '*').toUpperCase() // Path is case-sensitive const path = args['--path'] || '*' const outputFormat = args['--output'] || 'list' const max = args['--max'] || Infinity debug({ method, path, outputFormat, max })
So during delete.cy.js spec execution the app deletes 4 different items, and that is why this spec filename is shown first. We can feed this list directly into Cypress "run" command