Skip to content

Instantly share code, notes, and snippets.

@davglass
Created May 23, 2012 16:52
Show Gist options
  • Save davglass/2776329 to your computer and use it in GitHub Desktop.
Save davglass/2776329 to your computer and use it in GitHub Desktop.
'this is a test function': function() {
var test = this;
doSomethingAsync(function() {
Assert.isTrue(false, 'This throws');
test.resume(function() {
Assert.isTrue(false, 'This is caught');
});
});
test.wait();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment