不要怂,就是干,撸起袖子干!

Commit 482b3234 by Sascha Depold

added correct database config for travis

1 parent 57f3f8fb
before_script: "npm install" before_script:
- "mysql -e 'create database sequelize_test;'"
- "npm install"
script: script:
- "node_modules/.bin/jasmine-node spec" - "node_modules/.bin/jasmine-node spec"
- "expresso -s test/**/*" - "expresso -s test/**/*"
notifications: notifications:
- sascha@depold.com - sascha@depold.com
module.exports = { module.exports = {
username: 'root', username: null,
password: null, password: null,
database: 'sequelize_test', database: 'sequelize_test',
host: '127.0.0.1', host: '127.0.0.1',
rand: function() { return parseInt(Math.random() * 99999999999999) } rand: function() {
return parseInt(Math.random() * 99999999999999)
}
} }
module.exports = { module.exports = {
username: 'root' username: null,
, password: null password: null,
, database: 'sequelize_test' database: 'sequelize_test',
, host: '127.0.0.1' host: '127.0.0.1',
, rand: function() { rand: function() {
return parseInt(Math.random() * 99999999999999) return parseInt(Math.random() * 99999999999999)
} }
} }
\ No newline at end of file
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!