Files
mongo/jstests/core/query/js/js2.js
Zac 591928c619 SERVER-108478 JS formatted by prettier and remove clang-format (#39656)
GitOrigin-RevId: 6c8f6aded47f260aa4f7c231b17dae3302cb1e04
2025-08-21 17:27:09 +00:00

31 lines
531 B
JavaScript

// @tags: [
// requires_non_retryable_writes
//]
let t = db.jstests_js2;
t.remove({});
let t2 = db.jstests_js2_2;
t2.remove({});
assert.eq(0, t2.find().length(), "A");
t.save({z: 1});
t.save({z: 2});
assert.throws(
function () {
t.find({
$where: function () {
db.jstests_js2_2.save({y: 1});
return 1;
},
}).forEach(printjson);
},
[],
"can't save from $where",
);
assert.eq(0, t2.find().length(), "B");
assert(t.validate().valid, "E");