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 🙏

© 2024 – Pkg Stats / Ryan Hefner

@ln-maf/preprocessor

v2.1.1

Published

This project will preprocess feature files to allow more input variables to be supplied. This can be supplied through javascript, a csv/psv/json array file or a mixture of these. This will hopefully allow it to be easier to maintain larger test sets.

Downloads

1,688

Readme

Cucumber-pre-processor

This project will preprocess feature files to allow more input variables to be supplied. This can be supplied through javascript, a csv/psv/json array file or a mixture of these. This will hopefully allow it to be easier to maintain larger test sets. This requires typescript to install some of the cucumber modules. And to currently run it, you must do node exec.js an example command for running a specific feature with this would be:

mkdir -p test/report
npx preprocessor
npx cucumber-js -f json:test/report/cucumber_report.json --require "features/**/*.js" tmp/features/$*; 
val=$?
node multiReport.js; 
openPy $PWD/test/report/undefined/index.html
exit $val

npm package GitHub Actions Dependencies

Installation

Install with npm i @ln-maf/preprocessor.git An apply.js file needs to exist in the root of the project. Doing this will make the below keywords accessible, but if you would like to add more you can do so by creating your own steps in the apply.js file.

Running/configuration

To add apply keywords, the apply steps must be required in the root of your project in './apply.js' Additionally, feature files must be in features. The resulting output will be in '/tmp/features'.

Apply

A new keyword that is used as a preprocessor in the feature files. Anytime the word "Apply" is seen it will modify the feature file and output what is expected based on the Apply step provided in the "steps" file. This will replace either using a string or a json array object. This supports both Cucumber and Regex expressions and is used in the same way as a Given step is added in Cucumber.

Current steps

This is a list of steps provided at least in part as a demo for this.

Apply combinations for json file {string}

This will apply combinations for the provided json file. For example if the json file is

{
  "VIN": ["empty", "invalid", "valid"],
  "VRN": ["empty", "invalid", "valid"],
}

The result would be:

|  VRN	|  VIN	|
|  empty	|  empty	|
|  invalid	|  empty	|
|  valid	|  empty	|
|  empty	|  invalid	|
|  invalid	|  invalid	|
|  valid	|  invalid	|
|  empty	|  valid	|
|  invalid	|  valid	|
|  valid	|  valid	|

Apply CSV File {string}

This would convert a csv file into examples with the header included.

If the supplied csv file is:

VIN,VRN
empty,empty

This would become:

|  VIN	|  VRN	|
|  empty	|  empty	|

Apply CSV File {string} with filter {string}

Applies a javascript filter to the CSV file. If the function is defined in the steps, it can also be used. Example: If the supplied CSV file is:

VIN,VRN
empty,empty
valid,valid

And the filter is:

(i)=>i.VIN==="valid"

Then this would become:

|  VIN	|  VRN	|
|  valid	|  valid	|