Skip to content

Instantly share code, notes, and snippets.

@nikaspran
Last active August 29, 2015 13:56
Show Gist options
  • Save nikaspran/8961571 to your computer and use it in GitHub Desktop.
Save nikaspran/8961571 to your computer and use it in GitHub Desktop.
initDb
.then(function () {
return project.save();
})
.then(function () {
return Environment.destroy();
})
.then(function () {
done();
});
initDb
.then(project.save.bind(project, null))
.then(Environment.destroy.bind(Environment, null))
.then(done.bind(null, null));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment