Skip to content

Latest commit

 

History

History

cypress-cucumber

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

This repo contains tests for Cypress.io test application in Gherkin language with Testomat.io plugins

Installation

This is a playground for your first steps in testing, so instead of installing it from NPM it is recommended to clone it from repo instead.

If you're using npm to install this example, we support only Node.js 18.x and above |So you should install latest Node.js or switch using nvm

  1. Clone this repository
git clone [email protected]:testomatio/examples.git && cd examples/cypress-cucumber
  1. Install dependencies via npm:
npm i

Confirm test results localy

To open the example with the Cypress browser and execute .feature specs:

npx cypress open

To execute tests in console log only(get screens + videos + logs):

npx cypress run

This will install cypress & Testomat.io reporter

Loading Tests to Testomat.io

  1. Create empty project in Testomat.io
  2. Obtain API key from Testomat.io
  3. Run npx check-cucumber to upload tests data into testomat.io. Pass api key as TESTOMATIO environment variable:
TESTOMATIO={apiKey} npx check-cucumber@latest "**/*.feature" --dir cypress/integration/features

Environment variables It is recommended to store Testomatio API Key as environment variable and never save it in the source code. Set them directly when running tests or use dotenv package to save environment variable in a file and load them for tests.

Publishing Test Results to Testomat.io

Get API key from a project in Testomat.io:

TESTOMATIO={API_KEY} npx cypress run