From f702920a3bb8d05ef4d43cf4e51db592b459151f Mon Sep 17 00:00:00 2001 From: Tim Griesser Date: Fri, 13 Jun 2014 13:14:35 -0400 Subject: [PATCH] Test using a file and multiple connections --- test/knexfile.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/test/knexfile.js b/test/knexfile.js index 5aefb0aa..aca7545c 100644 --- a/test/knexfile.js +++ b/test/knexfile.js @@ -76,10 +76,12 @@ module.exports = { sqlite3: { client: 'sqlite3', - connection: testConfig.sqlite3 || { - filename: ':memory:' + connection: { + filename: __dirname + '/test.sqlite3' }, - pool: pool, + pool: _.extend({}, pool, { + max: 2 + }), migrations: migrations }