BusterJS is a collection of related node.js modules that can run browser and node-based JavaScript tests.
Definition:
Buster.JS is an open source JavaScript testing framework.
Currently, Buster.JS can work in both browser and Node.js environments.
According to the Buster.JS GitHub Repository, the project has been abandoned.
Example Usage:
// Node.js tests
var buster = require("buster");
var myLib = require("../lib/my-lib");
buster.testCase("A module", {
"states the obvious": function () {
assert(true);
}
});