🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

nodeunit-tape-compat

Package Overview
Dependencies
Maintainers
1
Versions
92
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

nodeunit-tape-compat

Run nodeunit test cases with much faster and actively developed tape.

1.3.81
latest
Source
npm
Version published
Maintainers
1
Created
Source

nodeunit-tape-compat

A nodeunit compatible runner based on tape for lazy people like me that don't want to review 1000 files and change two function signatures in every one...

Simply take your nodeunit files and this will run your tests with tape, removing legacy dependencies on non supported nodeunit.

If this is not fully compatible with nodeunit, please open an issue with an example test.

Usage

From command line:

# -- with global install --
npm i -g nodeunit-tape-compat
nodeunit-tape <path-to-file> <path-to-file>
# -- or simply --
npx nodeunit-tape-compat <path-to-file> <path-to-file> [-t]

The -t flag runs only methods starting with "test".

In package JSON (remember to npm i -D nodeunit-tape-compat):

    "test": "nodeunit-tape ./test/**/*.js"

From node.js:

const { DataStream } = require('scramjet');
const gs = require('glob-stream');
const tapeRunner = require('nodeunit-tape-compat');

tapeRunner.from(gs(process.argv.slice(2)))
    .run()
    .then(() => {
        console.error("✔ Tests succeeded.");
    })
    .catch(() => {
        console.error("✘ Some tests failed.");
        process.exit(1);
    });

API

As a module

module.exports = scramjet module

To be used on a scramjet stream of files like this:

    DataStream
        .from(gs(process.argv.slice(2)))
        .use('nodeunit-tape-compat')
        // do something with the stream of tests
        .pipe(process.stdout)
    ;

Methods:

  • async from(Readable stream) : void consumes a stream of file objects
  • flattenTests(Object.<String,Object|AsyncFunction>) : Object.<String,AsyncFunction> DataStream mapper that flattens the nested test objects to a simple hash of test cases.
  • runTests(Object.<String,AsyncFunction>) DataStream mapper that runs the tests asynchronously and returns the results.

File object

A file object is meant to be generally compatible with fs.stat and VinylFS.

Properties:

  • path - path to the file containing tests

Keywords

nodeunit

FAQs

Package last updated on 21 Aug 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts