Skip to content

cucumber/cucumber-js

Folders and files

NameName
Last commit message
Last commit date
Mar 27, 2025
Mar 21, 2022
Apr 22, 2022
Jan 7, 2025
Mar 27, 2025
Dec 29, 2024
Mar 27, 2025
Jan 3, 2021
Mar 27, 2025
Dec 29, 2024
Mar 27, 2025
Feb 12, 2025
Oct 2, 2019
Mar 12, 2025
Oct 10, 2021
Aug 12, 2024
Nov 10, 2023
Dec 1, 2020
Jan 7, 2024
Feb 27, 2023
Mar 27, 2025
Aug 9, 2024
May 26, 2016
Dec 29, 2024
Nov 3, 2021
Aug 21, 2024
Sep 3, 2023
Mar 12, 2025
Mar 29, 2025
Mar 29, 2025
Feb 24, 2025
Oct 8, 2023
Feb 27, 2023
Jan 7, 2024

Repository files navigation


Cucumber

Automated tests in plain language, for Node.js

Latest version on npm Build status Coverage Backers Sponsors Ukraine solidarity

Cucumber is a tool for running automated tests written in plain language. Because they're written in plain language, they can be read by anyone on your team. Because they can be read by anyone, you can use them to help improve communication, collaboration and trust on your team.

This is the JavaScript implementation of Cucumber. It runs on maintained versions of Node.js. You can quickly try it via CodeSandbox, or read on to get started locally in a couple of minutes.

Looking to contribute? Read our code of conduct first, then check the contributing guide to get up and running.

Install

Cucumber is available on npm:

npm install @cucumber/cucumber

Get Started

Let's take this example of something to test:

First, write your main code in src/index.js:

class Greeter {
  sayHello() {
    return 'hello'
  }
}

module.exports = {
  Greeter
}

Then, write your feature in features/greeting.feature:

Feature: Greeting

  Scenario: Say hello
    When the greeter says hello
    Then I should have heard "hello"

Next, implement your steps in features/support/steps.js:

const assert = require('assert')
const { When, Then } = require('@cucumber/cucumber')
const { Greeter } = require('../../src')

When('the greeter says hello', function () {
  this.whatIHeard = new Greeter().sayHello()
});

Then('I should have heard {string}', function (expectedResponse) {
  assert.equal(this.whatIHeard, expectedResponse)
});

Finally, run Cucumber:

npx cucumber-js

And see the output:

Terminal output showing a successful test run with 1 scenario and 2 steps, all passing

If you learn best by example, we have a repo with several example projects, that might help you get going.

Documentation

The following documentation is for main, which might contain some unreleased features. See documentation for older versions if you need it.

Support

Support is available from the community if you need it.