npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

seequcumber

v1.0.1

Published

Gherkin based framework to manage manual test cases.

Downloads

1,137

Readme

Seequcumber

Description

SeeQucumber is a Gherkin based framework to manage manual test cases.

It generates the following artifacts:

  • Test Plan template from existing Gherkin feature files
  • Test Report from the results of manual testing

Installation

Seequcumber is available as an npm module.

Install:

$ npm install seequcumber

Usage

Seequcumber CLI has two primary options:

seequcumber --testPlan

Creates a new Test Plan from a directory of Gherkin files. Once the blank template is generated, it can be found in the current directory as a csv file. It's easily editable to add more required test cases (example).

seequcumber --testReport

Creates a new Test Report from a Test Plan and directory of Gherkin files. Once generated, the html report can be found in the current directory.

To evaluate if a required scenario has been completed, each scenario's "version tested" (example) is compared the "version to test" from the Test Plan (example).

This comparison uses a string sort (as opossed to a natural sort). It is required that the Test Plan's "version to test" matches the format of the feature file "version tested".

For example: Test Plan version to test: 0.40.0 Feature File version tested: 0.40.20190125 (version 0.40 built on Jan 25th 2019)

CLI Options

-tp, --testPlan Create a new Test Plan

-tr, --testReport Create a new Test Report

-d, --featureDir [dir]
Directory of feature files

-f, --testPlanFilename [filename]
Filename of the Test Plan used to generate a Test Report

-h, --help Usage information

Examples:

seequcumber --testPlan --featureDir "./dir"
seequcumber --testReport --testPlanFilename "./myTestPlan.csv" --featureDir "/dir"

Feature File Formatting

Seequcumber extract scenarios from feature files used in manual testing.
It requires the following format:

  1. Feature tag @manual A tag indicating that this test is manual (as opposed to automated) is required. Example

     @manual
     Feature: ...
         Scenario: ...
    
  2. Test Run Result Each Scenarios has steps with a table containing the manual test result. The table can contain several rows to indicate multiple executions on different versions. Example

    Scenario: ...
         When ...
             |<Result>|<Version>|<Tester>|<Defect>|
  1. Results The result of the manual test.

    PASSED (or PASS)
    FAILED (or FAIL)
    SKIPPED (or SKIP)
  2. Version The version of the software that was tested. Example 0.40.0.20190101 (0.40 version built on January 01 2019)

  1. Tester (Optional)
    Name of tester who executed this test case.

  2. Defect (Optional) The ticket number(s) for defects filed for this step

Third-party libraries

The following third-party libraries are used by this module:

  • cucumber-js: https://github.com/cucumber/cucumber-js - to handle parsing of Cucumber Feature files
  • ejs: https://github.com/tj/ejs - for dynamic HTML processing of multiple Javascript objects

Seequcumber Development

Clone the repo and install dependencies:

git clone https://github.com/seeq12/seequcumber.git
cd seequcumber
npm install

Run the tests:

npm test