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 🙏

© 2026 – Pkg Stats / Ryan Hefner

tart-nodeunit

v0.1.1

Published

Tart nodeunit

Downloads

6

Readme

tart-nodeunit

Adapter for nodeunit testing (tart module)

Contributors

@dalnefre, @tristanls

Overview

Adapter for nodeunit testing (tart module)

Usage

To run the below example run:

npm run test
"use strict";

var adapter = require('../index.js');

var test = module.exports = {};

test["example from tart-tracing exercises all actor primitives"] = function (test) {
    test.expect(4);
    var testing = adapter.testing(test);

    var oneTimeBeh = function oneTimeBeh(message) {
        test.equal(message, 'bar');
        var child = this.sponsor(createdBeh); // create
        child('foo'); // send
        this.behavior = becomeBeh; // become
    };
    var createdBeh = function createdBeh(message) {
        test.equal(message, 'foo');
    };
    var becomeBeh = function becomeBeh(message) {
        test.equal(message, 'baz');
    };

    var actor = testing.sponsor(oneTimeBeh);  // create
    actor('bar');  // send
    actor('baz');  // send

    test.ok(testing.dispatch());
    test.done();
};

Tests

npm test

Documentation

tart-nodeunit is an adaptor for running nodeunit tests.

Public API

tart.testing(test)

  • test: Object nodeunit test object.
  • Return: Object The testing control object.
    • sponsor: Function function (behavior) {} A capability to create new actors.
    • dispatch: Function function ([options]) {} Function to call to dispatch events. Returns true when there are no more events.
    • tracing: Object Tracing control object.

Returns the testing control object.

testing.sponsor(behavior)

  • behavior: Function function (message) {} Actor behavior to invoke every time an actor receives a message.
  • Return: Function function (message) {} Actor reference in form of a capability that can be invoked to send the actor a message.

Creates a new (traceable) actor and returns the actor reference in form of a capability to send that actor a message.

var adapter = require('../index.js');
var test = module.exports = {};
test["sponsor creates an actor"] = function (test) {
    test.expect(2);
    var testing = adapter.testing(test);

    var actor = testing.sponsor(function (message) {  // create
        test.ok(message);
    });
    actor(true);  // send

    test.ok(testing.dispatch());
    test.done();
};

testing.dispatch([options])

  • options: Object (Default: { fail: function(exception) { throw exception; } }) Optional overrides.
    • fail: Function function (exception){} Function called to report exceptions from actor behavior (Example: function (exception){ /* ignore exceptions */ }).
    • count: Number (Default: undefined) Maximum number of events to dispatch, or unlimited if undefined.
  • Return: Boolean. true if event queue is exhausted, otherwise false.

Dispatch events. If options.count is specified, dispatch at most options.count events. When the event queue is exhausted, return true. Otherwise return false. If an actor behavior throws an exception, options.fail() is called to handle it. The default implementation of options.fail() throws the exception out of testing.dispatch().

var adapter = require('../index.js');
var test = module.exports = {};
test["dispatch delivers limited number of events"] = function (test) {
    test.expect(4);
    var testing = adapter.testing(test);

    var actor = testing.sponsor(function (message) {  // create
        test.ok(message);
        this.self(message + 1);  // send
    });
    actor(1);  // send

    var done = testing.dispatch({ count: 3 });
    test.strictEqual(done, false);
    test.done();
};

Sources