Skip to content

Latest commit

 

History

History
34 lines (24 loc) · 1.34 KB

README.md

File metadata and controls

34 lines (24 loc) · 1.34 KB

Cypress Allure Plugin Usage Example

This project demonstrates how to use cypress-allure-plugin.

Pre-requisite

How to run:

  • clone this repo
  • run tests: yarn && yarn cy:run
  • clear previous output yarn allure:clear
  • generate allure report: yarn allure:report
  • open report: allure open

Allure report

VS Code for cypress + cucumber

In case you are using VS Code and Cypress Helper extension, it has configuration for allure cucumber tags autocompletion available:

"cypressHelper.cucumberTagsAutocomplete": {
        "enable": true,
        "allurePlugin": true,
        "tags": ["focus", "someOtherTag"]
    }