Files
zoff/server/node_modules/mongojs/test/crash.js

11 lines
224 B
JavaScript
Executable File

var mongojs = require('../index');
var db = mongojs('localhost', ['test']);
db.test.findOne(function() {
throw new Error('I should crash the program');
});
setTimeout(function() {
throw new Error('timeout');
}, 5000);