Test using a file and multiple connections

This commit is contained in:
Tim Griesser 2014-06-13 13:14:35 -04:00
parent 7332b86688
commit f702920a3b

View File

@ -76,10 +76,12 @@ module.exports = {
sqlite3: { sqlite3: {
client: 'sqlite3', client: 'sqlite3',
connection: testConfig.sqlite3 || { connection: {
filename: ':memory:' filename: __dirname + '/test.sqlite3'
}, },
pool: pool, pool: _.extend({}, pool, {
max: 2
}),
migrations: migrations migrations: migrations
} }