mirror of
https://github.com/KevinMidboe/zoff.git
synced 2025-10-29 18:00:23 +00:00
11 lines
224 B
JavaScript
Executable File
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);
|