Skip to content

Commit 3805c2f

Browse files
committed
MLE-24685 Skipping timestamp test that fails due to server issue
1 parent 0c36e94 commit 3805c2f

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

CONTRIBUTING.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,3 +53,6 @@ contained in either the "it" function or the "describe" function, respectively.
5353
or
5454

5555
mocha test-basic -timeout 0 -g 'test bindParam with qualifier'
56+
57+
There are also tests in the `test-complete` folder. The setup for these is more complicated and can
58+
be found in the `Jenkinsfile` file in this repository in the `runE2ETests` function.

test-complete/nodejs-optic-from-views.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1151,7 +1151,8 @@ describe('Nodejs Optic from views test', function () {
11511151
}, done);
11521152
});
11531153

1154-
it('TEST 38 - with old timestamp', function (done) {
1154+
// Skipping due to server bug MLE-24724
1155+
it.skip('TEST 38 - with old timestamp', function (done) {
11551156
var oldTimestamp = db.createTimestamp('123');
11561157
const plan1 = op.fromView('opticFunctionalTest', 'detail', 'myDetail');
11571158
const plan2 = op.fromView('opticFunctionalTest', 'master', 'myMaster');

test-complete/nodejs-optic-nodes.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,7 @@ const op = marklogic.planBuilder;
1717

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

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

0 commit comments

Comments
 (0)