Created
January 30, 2015 19:38
-
-
Save kevinburkeshyp/6a772c9f6a8367e6ae6a to your computer and use it in GitHub Desktop.
Sails test runner
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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