mirror of
https://github.com/mongodb/mongo.git
synced 2024-11-30 17:10:48 +01:00
22 lines
313 B
JavaScript
22 lines
313 B
JavaScript
// Test that client gets stack trace on failed invoke
|
|
|
|
f = db.jstests_error2;
|
|
|
|
f.drop();
|
|
|
|
f.save( {a:1} );
|
|
|
|
assert.throws(
|
|
function(){
|
|
c = f.find({$where : function(){ return a() }});
|
|
c.next();
|
|
}
|
|
);
|
|
|
|
assert.throws(
|
|
function(){
|
|
db.eval( function() { return a(); } );
|
|
}
|
|
);
|
|
|