Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,3 +53,6 @@ contained in either the "it" function or the "describe" function, respectively.
or

mocha test-basic -timeout 0 -g 'test bindParam with qualifier'

There are also tests in the `test-complete` folder. The setup for these is more complicated and can
be found in the `Jenkinsfile` file in this repository in the `runE2ETests` function.
3 changes: 2 additions & 1 deletion test-complete/nodejs-optic-from-views.js
Original file line number Diff line number Diff line change
Expand Up @@ -1151,7 +1151,8 @@ describe('Nodejs Optic from views test', function () {
}, done);
});

it('TEST 38 - with old timestamp', function (done) {
// Skipping due to server bug MLE-24724
Copy link

Copilot AI Oct 14, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment references bug MLE-24724, but the PR title mentions MLE-24685. Consider verifying the correct bug number or adding both if they are related.

Suggested change
// Skipping due to server bug MLE-24724
// Skipping due to server bug MLE-24724 (see also MLE-24685)

Copilot uses AI. Check for mistakes.
it.skip('TEST 38 - with old timestamp', function (done) {
var oldTimestamp = db.createTimestamp('123');
const plan1 = op.fromView('opticFunctionalTest', 'detail', 'myDetail');
const plan2 = op.fromView('opticFunctionalTest', 'master', 'myMaster');
Expand Down
3 changes: 1 addition & 2 deletions test-complete/nodejs-optic-nodes.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,7 @@ const op = marklogic.planBuilder;

describe('Nodejs Optic nodes json constructor test', function () {

// Skipping this test due to odd server bug that will be written up soon.
it.skip('TEST 1 - construct json from literals', function (done) {
it('TEST 1 - construct json from literals', function (done) {
const plan1 =
op.fromLiterals([
{ rowId: 1, colorId: 1, desc: 'ball' },
Expand Down