Cypress.spec
returns you the properties of the spec under test.
Syntax
Cypress.spec // returns spec object
Examples
Log spec information
Cypress.spec
returns an object
it('log spec info', () => { console.log(Cypress.spec) // { // name: 'filter.spec.js', // relative: 'cypress/integration/filter.spec.js', // absolute: '/Users/janelane/Dev/web-app/cypress/integration/filter.spec.js', // } })