Skip to content

Instantly share code, notes, and snippets.

@kevinburkeshyp
Created January 30, 2015 19:38
Show Gist options
  • Save kevinburkeshyp/6a772c9f6a8367e6ae6a to your computer and use it in GitHub Desktop.
Save kevinburkeshyp/6a772c9f6a8367e6ae6a to your computer and use it in GitHub Desktop.
Sails test runner
var time = Date.now();
require('sails').lift({
models: {
migrate: "safe"
},
verbose: true,
log: {
level: 'silly'
},
hooks: {
grunt: false,
}
}, function() {
console.log(Date.now() - time + "ms");
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment