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

sinon-test

v3.1.5

Published

<a href="CODE_OF_CONDUCT.md"><img src="https://img.shields.io/badge/Contributor%20Covenant-v2.0%20adopted-ff69b4.svg" alt="Contributor Covenant" /></a>

Downloads

93,237

Readme

Sinon Test

Automatic sandbox setup and teardown for SinonJS

Why?

Instead of writing tedious setup and teardown code for each individual test case you can let Sinon do all the cleanup for you.

So instead of doing this (using Mocha syntax):

var spy1;
var spy2;

afterEach(() => {
    spy1.restore();
    spy2.restore();
});

it("should do something", () => {
    spy1 = sinon.spy(myFunc);
    spy2 = sinon.spy(myOtherFunc);
    myFunc(1);
    myFunc(2);
    assert(spy1.calledWith(1));
    assert(spy1.calledWith(2));
});

You could write just this

it(
    "should do something",
    test(function () {
        var spy1 = this.spy(myFunc);
        var spy2 = this.spy(myOtherFunc);
        myFunc(1);
        myFunc(2);
        assert(spy1.calledWith(1));
        assert(spy1.calledWith(2));
    })
); //auto-cleanup

Sinon will take care of removing all the spies and stubs from the wrapped functions for you. It does this by using sinon.sandbox internally.

Do notice that we use a function and not a arrow function (ES2015) when wrapping the test with sinon.test as it needs to be able to access the this pointer used inside of the function, which using an arrow function would prevent.

See the Usage section for more details.

Installation

via npm (node package manager)

$ npm install sinon-test

Usage

Node and CommonJS build systems

Once initialized, the package creates a context for your test based on a sinon sandbox. You can use this in a wrapped test function to create sinon spies, stubs, etc. After your test completes, the sandbox restores anything modified to its original value.

If your test function takes any arguments, pass then to the test wrapper after the test function. If the last argument is a function, it is assumed to be a callback for an asynchronous test. The test function may also return a promise.

See the sinon documentation for more documentation on sandboxes.

sinon-test instances need to be configured with a sinon instance (version 2+) before they can be used.

var sinon = require("sinon");
var sinonTest = require("sinon-test");
var test = sinonTest(sinon);
var assert = require("assert");

describe("my function", function () {
    var myFunc = require("./my-func");

    it(
        "should do something",
        test(function () {
            var spy = this.spy(myFunc);
            myFunc(1);
            assert(spy.calledWith(1));
        })
    ); //auto-cleanup
});

Direct browser usage

In place of the require statements indicated above, in the browser, you should simply reference the global sinonTest after including a script tag in your HTML:

<script src="dist/sinon-test.js"></script>

Or if you are in an ES6 Modules environment (modern browsers only), you only need to add an import statement:

<script type="module">
    import sinon from "./node_modules/sinon/pkg/sinon-esm.js";
    import sinonTest from "./node_modules/sinon-test/dist/sinon-test-es.js";
    const test = sinonTest(sinon);

    it(
        "should work",
        test(function () {
            pass();
        })
    );
</script>

API

const test = require("sinon-test")(sinon);

In order to configure the sandbox that is created, a configuration hash can be passed as a 2nd argument to sinonTest:

const test = require("sinon-test")(sinon, { useFakeTimers: false });

The only difference to the standard configuration object for Sinon's sandbox is the addition of the injectIntoThis property, which is used to inject the sandbox' props into the context object (this).

Backwards compatibility

Sinon 1.x used to ship with this functionality built-in, exposed as sinon.test(). You can keep all your existing test code by configuring an instance of sinon-test, as done above, and then assigning it to sinon like this in your tests:

sinon.test = test;