spin-test
v1.0.0
Published
Spin on a test until it passes
Downloads
8
Readme
spin-test
Spin on a test until it passes.
Inspired by http://sauceio.com/index.php/2011/04/how-to-lose-races-and-win-at-selenium/
SUPER handy for flakey selenium tests where the framework is racing ahead of the browser.
Installation
npm install --save-dev spin-testUsage
This module exports a function spin.
var spin = require('spin-test');The Basics
All three parameters to spin() are Functions.
function action(cb) {
cb(null, result);
}
function check(result) {
// throw or not
}
function done(err) {
// conclude the test
}
spin(action, check, done);The action will be executed on the next tick by setImmediate and runs
asynchronously. The callback results of the action (minus the first err
param) are passed to the check. If the action calls-back with an err, it
will be scheduled to run again after a short period (100ms by default).
The check Function runs synchronously. If the check doesn't throw,
done will get called.
If the check does throw an exception, the action is scheduled to happen
again after a short period (100ms by default). Once the spinner has been
running for a maximum amount of time (4000ms by default) done will get
called with an error.
Configuring Intervals
You can affect all newly created spinners by setting spin package globals:
spin.TIMEOUT = 1000; // maximum run time of the spinner, in ms
spin.WAIT = 10; // time to wait between attempts, in msTo restore these:
spin.TIMEOUT = spin.DEFAULT_TIMEOUT;
spin.WAIT = spin.DEFAULT_WAIT;Or, you can modify the times for each test:
var spinner = spin(action, check, done);
spinner.timeout = 1000;
spinner.wait = 10;Impatience
Want the action to run immediately, not after setImmediate? We got you covered.
spinner.start();Error Accumulator
The .errors property will be an array of Errors that occurred while spinning.
var spinner;
function finish(err) {
if (!err) {
return done();
}
process.stderr.write("Oh my gawd, it's full of STACKS:\n");
spinner.errors.forEach(function(e) {
process.stderr.write(e.stack+"\n\n");
);
}
spinner = spin(action, check, finish);Contributing
If you'd like to contribute to or modify spin-test, here's a quick guide to get you started.
Development Dependencies
- node.js >= 0.10
Set-Up
Download via GitHub and install npm dependencies:
git clone [email protected]:goinstant/spin-test.git
cd spin-test
npm installTesting
Testing is with the mocha framework.
Tests are located in the test.js file.
To run the tests:
npm testPublishing
npm version patch(incrementsxinz.y.x, then makes a commit for package.json, tags that commit)git push --tags origin masternpm publish
Go to https://npmjs.org/package/spin-test and verify it published (can take several minutes)
Support
Email GoInstant Support or stop by #goinstant on freenode.
For responsible disclosures, email GoInstant Security.
To file a bug or propose a patch, please use github directly.
Legal
© 2013 GoInstant Inc., a salesforce.com company
Licensed under the BSD 3-clause license.

