flow-cov

0.4.1 • Public • Published

flow-cov – Your new favorite flow coverage reporting tool.

CircleCI Waffle.io - Columns and their card count

What is flow-cov?

flow-cov is aimed to be a tool to collect the flow-coverage of your project, just like you collect the test coverage for your Jest projects. flow-bin only has support for collecting coverage from one file at a time. What flow-cov does is that it uses globs to find all files you want, runs the command for each file found, and collects coverage and the parts of the files that are not covered. Easy as that.

Unlike jest, istanbul, etc., you sadly cannot post your results to coveralls.io or codecov.io. Yet!

Command line tool

You can easily use the command line tool we are currently shipping with, by using the following command:

% flow-cov

Using npx

If you don't want to install a specific version of flow-cov into your project, you are free to use the binary with npx, which is installing it locally for the execution. Just try the following command in your project (but be sure to set the configuration though, otherwise, the default configuration will be used).

% npx flow-cov

Options

The command line interface tool offers some options you can use to customize the behavior of the configuration specified in package.json. See below for all options.

--reporters <reporters>

The reporters option is used for overwriting the reporters specified in your package.json. It can be used when in a CI environment or even on your computer. To use it, see the following usage:

% flow-cov --reporters json

You can also supply a list of reporters by seperating the reporters with a ,:

% flow-cov --reporters json,text

--concurrency <numberOfFiles>

The concurrency option is for specifying a number of files that are worked on concurrently. This can be used to limit the numbers, when there is not that much RAM available. Note: Infinity is not a valid value. Try to use a high value, if you want all files at once.

--threshold <number>

Overwrite or define the threshold specified in your package.json file.

--pretty

Only with the use of the JSON reporter. The --pretty option is telling the tool to prettify the output of the JSON returned by the reporter.

--verbose

Not much to say here. Verbose is just saying that everything in the script should be logged. Do not use if you are using piping such as flow-cov --reporters json > output.json.

--no-progress

Suppresses the progress bar output.

Configuration

Configuration is very easy and straight forward. Just include the following object in your package.json under the flow-cov key. For a specific comment and notes for the configurations, please refer to the "Options" part of the README.md

{
  "threshold": 90,
  "globIncludePatterns": ["**/*.js"],
  "globExcludePatterns": [],
  "reporters": ["text"],
  "concurrency": 5
}

The package.json would look something like this then:

{
  "name": "your-project-name",
  "devDependencies": {
    "flow-cov": "*"
  },
  "flow-cov": {
    "threshold": 90,
    "globIncludePatterns": ["**/*.js"],
    "globExcludePatterns": [],
    "reporters": ["text"],
    "concurrency": 5
  }
}

About

Inspiration

We almost worked with flow-coverage-report for one and a half year now, but at some point felt, like we need some more features and needed to have them evolved quickly. But since the code frequency and commit activity slept a little in the last time, we are now creating our very own coverage reporter.

Though, we are starting with a little bare construction of the reporter, the repository is here to live up a little more and by evolving to a better coverage reporter. We also have a roadmap.

Shameless plug

Powered by Fintory

Readme

Keywords

none

Package Sidebar

Install

npm i flow-cov

Weekly Downloads

2

Version

0.4.1

License

MIT

Unpacked Size

21.5 kB

Total Files

26

Last publish

Collaborators

  • iduuck