Skip to content

Instantly share code, notes, and snippets.

@aslakhellesoy
Created October 16, 2012 22:58
Show Gist options
  • Select an option

  • Save aslakhellesoy/3902609 to your computer and use it in GitHub Desktop.

Select an option

Save aslakhellesoy/3902609 to your computer and use it in GitHub Desktop.
function the_x(x, cb) {
console.log('x', x);
cb();
}
Given(/x is (.*)/, the_x);
Given(/i decide x/, function(cb) {
foo(97, cb);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment