We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44784fa commit 81ce2f6Copy full SHA for 81ce2f6
test/integration/client/heroku-ssl-tests.js
@@ -17,6 +17,9 @@ var config = {
17
18
//connect & disconnect from heroku
19
pg.connect(config, assert.success(function(client, done) {
20
- done();
21
- pg.end();
+ client.query('SELECT NOW() as time', assert.success(function(res) {
+ assert(res.rows[0].time.getTime());
22
+ done();
23
+ pg.end();
24
+ }))
25
}));
0 commit comments