Cypress.spec

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',
  // }
})

© 2017 Cypress.io
Licensed under the MIT License.
https://docs.cypress.io/api/cypress-api/spec