Skip to content

Commit b312e07

Browse files
committed
[chore] fix test
1 parent 025d97a commit b312e07

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test/fixtures/app.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ module.exports = _.defaultsDeep({
5252
*/
5353
connection: {
5454
host: 'localhost',
55-
// user: 'admin',
56-
// password: '1234',
57-
database: 'Knex'
55+
user: process.env.POSTGRES_USER || null,
56+
password: process.env.POSTGRES_PASSWORD,
57+
database: process.env.POSTGRES_DB || 'Knex'
5858
},
5959
migrate: 'drop'
6060
}

0 commit comments

Comments
 (0)