You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

17 lines
508 B

var test = require('tape')
var mongojs = require('../')
test('connect non existing db', function (t) {
var db = mongojs('mongodb://1.0.0.1:23/aiguillage?connectTimeoutMS=100', ['a'])
db.on('error', console.log)
db.runCommand({ping: 1}, function (err) {
t.ok(err, 'Should yield an error if non connection to db could be established')
db.runCommand({ping: 1}, function (err) {
t.ok(err, 'Should yield an error if non connection to db could be established')
t.end()
})
})
})