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

Commit 8cb49b9c by sdepold

use the same config for buster as for jasmine

1 parent 3e53556c
Showing with 25 additions and 1 deletions
...@@ -3,5 +3,29 @@ module.exports = { ...@@ -3,5 +3,29 @@ module.exports = {
password: null, password: null,
database: 'sequelize_test', database: 'sequelize_test',
host: '127.0.0.1', host: '127.0.0.1',
pool: { maxConnections: 5, maxIdleTime: 30000} pool: { maxConnections: 5, maxIdleTime: 30000},
rand: function() {
return parseInt(Math.random() * 999)
},
//make maxIdleTime small so that tests exit promptly
mysql: {
username: "root",
password: null,
database: 'sequelize_test',
host: '127.0.0.1',
port: 3306,
pool: { maxConnections: 5, maxIdleTime: 30}
},
sqlite: {
},
postgres: {
database: 'sequelize_test',
username: "postgres",
port: 5432,
pool: { maxConnections: 5, maxIdleTime: 30}
}
} }
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!