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

You need to sign in or sign up before continuing.
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:
- "node_modules/.bin/jasmine-node spec"
- "expresso -s test/**/*"
notifications:
- sascha@depold.com
module.exports = {
username: 'root',
username: null,
password: null,
database: 'sequelize_test',
host: '127.0.0.1',
rand: function() { return parseInt(Math.random() * 99999999999999) }
rand: function() {
return parseInt(Math.random() * 99999999999999)
}
}
module.exports = {
username: 'root'
, password: null
, database: 'sequelize_test'
, host: '127.0.0.1'
, rand: function() {
username: null,
password: null,
database: 'sequelize_test',
host: '127.0.0.1',
rand: function() {
return parseInt(Math.random() * 99999999999999)
}
}
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!