1.0.0 • Published 10 years ago

hoodie-plugin-test v1.0.0

Weekly downloads
3
License
-
Repository
-
Last release
10 years ago

Hoodie Test Plugin

The simplest hoodie plugin. Good for playing with tasks

Usage

// start a task that will succeed
hoodie.test({foo: 'bar'}).done(function() { alert('works'); })
// start a task that will fail (add `fail` property)
hoodie.test({foo: 'bar', fail: true}).fail(function() { alert('works'); })