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

node-tdd

v5.2.4

Published

Drop in extension for mocha to abstract commonly used test setups

Downloads

3,287

Readme

node-tdd

Build Status Test Coverage Dependabot Status Dependencies NPM Downloads Semantic-Release Gardener

Drop in replacement for mocha to abstract commonly used test setups

Install

Install with npm:

$ npm install --save node-tdd

Usage

Drop-in extension for mocha by simply importing describe as below.

import { expect } from 'chai';
import { describe } from 'node-tdd';

describe('Testing some stuff', /* { ...options }, */ () => {
  it('Testing a thing', () => {
    expect(3 * 7).to.equal(21);
  });
});

Please see tests for further usage examples.

Custom Cassette Logic

delayConnection

Delay the connection by a certain number of ms.

delayBody

Delay the response body by a certain number of ms.

Function Kwargs

dir

Type: string

The tmp directory for this test. Only available when useTmpDir is set.

recorder

Type: object

Can be called to interact with the currently captured logs. Exposes the following functions:

  • get(level = null): Returns array of recorded logs. Can be restricted by passing in the log level.
  • reset(): Reset currently captured logs
  • verbose(flag: boolean): Set verbosity mode of capture (if the original logger function is called)

Only available when record option is used.

capture

Type: function

Utility function that takes a function as an argument, calls it and expects it to raise an error. The raised error is returned. If no error is raised an assertion error is thrown instead.

fixture

Type: function

Utility function that can be used to load test fixtures from the fixtureFolder.

Internally this uses smart-fs to determine how a file extension is loaded.

If the fixture is unique, the file extensions is not required.

CLI Args

nock-heal

Used to heal nock recordings. This is useful when the body of (some) recordings is outdated or the recording order is invalid. Can be used in the following ways:

  • --nock-heal: Will try to heal ordering of nock cassette recordings
  • --nock-heal prune: Will remove unmatched recordings from nock cassette
  • --nock-heal headers: Will try to heal request headers of nock cassette recordings
  • --nock-heal body: Will try to heal bodies of nock cassette recordings
  • --nock-heal path: Will try to heal paths of nock cassette recordings
  • --nock-heal response: Will try to heal responses
  • --nock-heal record: Will record the next unmatched request
  • --nock-heal stub: Will stub the next unmatched request
  • --nock-heal magic: Shorthand for headers,body,path,response

Notes:

  • Different flags can be combined as e.g. --nock-heal body,path
  • Healing cassettes containing out-of-order requests can result in undesired behaviour

Options

useTmpDir

Type: boolean Default: false

When set to true, a fresh temporary directory is set up for each test. The directory is cleaned up after the test run has completed.

useNock

Type: boolean Default: false

When set to true, all requests are automatically nocked. The recording files are automatically created relative to the current test file.

nockFolder

Type: string Default: $FILENAME__cassettes

Used to customize the folder name that contains the nock cassettes. This can be useful when multiple describe in the same file use nock.

nockModifiers

Type: object Default: {}

Used to define modifiers that can be used in cassettes. E.g. can be used to make encoded response bodies more readable. See tests for how to use in detail.

nockStripHeaders

Type: boolean Default: false

When set to true, all headers are stripped when requests are recorded.

nockReqHeaderOverwrite

Type: object Default: {}

Can be used to overwrite reqheaders in recordings. Cassette files are only updated when changed.

fixtureFolder

Type: string Default: $FILENAME__fixtures

Used to customize the folder name that contains the test fixtures. Fixtures can be loaded by calling fixture(FIXTURE_NAME).

envVarsFile

Type: string Default: $FILENAME.env.yml

Used to customize the name of the file that environment variables are loaded from, if it exists.

To allow overwriting of environment variables, prefix the name of the environment variable with ^.

envVars

Type: object Default: -

Used to declare environment variables per describe. Overwrites environment variables loaded from envVarsFile (if allowed).

To allow overwriting of environment variables, prefix the name of the environment variable with ^.

clearCache

Type: boolean Default: true

Known accessed caches will be cleared after test has executed when set to true.

timestamp

Type: number|string Default: -

Set timestamp to freeze time to. Will modify the result of e.g. new Date().

record

Type: object Default: -

Expects logger (e.g. console) to be passed in and captures input, which can be accessed by using recorder from within the test.

cryptoSeed

Type: string Default: -

When set, randomization is overwritten and consistent per test using the provided seed.

cryptoSeedReseed

Type: boolean Default: false

When set to true, all random functions are re-seeded. This results in reduced randomness.

Only allowed when cryptoSeed is provided.

timeout

Type: number Default: -

Set the timeout for all tests in the suite.