From 11dce43a99a92fd8a8bf3b732c95a60dcc154428 Mon Sep 17 00:00:00 2001 From: andy bunce Date: Wed, 22 Feb 2023 16:06:41 +0000 Subject: [PATCH] [fix] ts tests --- package.json | 2 +- src/xpath/xpath-evaluator.ts | 5 +++-- src/xquery-execution/commands/executeXQuery.ts | 2 +- tsconfig.json | 3 ++- 4 files changed, 7 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 97f216e..eb4cef3 100644 --- a/package.json +++ b/package.json @@ -295,7 +295,7 @@ "watch": "tsc -watch -p ./", "pretest": "npm run compile && npm run lint", "lint": "eslint src --ext ts", - "test": "node ./out/test/runTest.js" + "test": "npm run compile && mocha './out/test/**/*.js'" }, "devDependencies": { "@types/glob": "^7.2.0", diff --git a/src/xpath/xpath-evaluator.ts b/src/xpath/xpath-evaluator.ts index 7dcd104..0225860 100644 --- a/src/xpath/xpath-evaluator.ts +++ b/src/xpath/xpath-evaluator.ts @@ -52,18 +52,19 @@ export class XPathEvaluator { evaluatorResult.result = xPathResult.booleanValue; break; case XPathResultTypes.UNORDERED_NODE_ITERATOR_TYPE: - case XPathResultTypes.ORDERED_NODE_ITERATOR_TYPE: + case XPathResultTypes.ORDERED_NODE_ITERATOR_TYPE:{ evaluatorResult.result = xPathResult.booleanValue; let node: Node; - while (node = xPathResult.iterateNext()) { + while ((node = xPathResult.iterateNext())) { nodes.push(node); } evaluatorResult.result = nodes; evaluatorResult.type = EvaluatorResultType.NODE_COLLECTION; break; + } } diff --git a/src/xquery-execution/commands/executeXQuery.ts b/src/xquery-execution/commands/executeXQuery.ts index 2063bb5..8897db1 100644 --- a/src/xquery-execution/commands/executeXQuery.ts +++ b/src/xquery-execution/commands/executeXQuery.ts @@ -87,7 +87,7 @@ export async function executeXQuery(editor: TextEditor, edit: TextEditorEdit): P if (outputPath) { outputPath = await window.showInputBox({ - placeHolder: "ex. C:\\TEMP\XQueryOutput\\MyOutputFile.xml", + placeHolder: "ex. C:/TEMP/XQueryOutput/MyOutputFile.xml", prompt: "Please specify the output file path. Existing file behavior is determined by the execution engine you have specified.", value: outputPath }); diff --git a/tsconfig.json b/tsconfig.json index b75f03e..81d0ecd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -14,6 +14,7 @@ }, "exclude": [ "node_modules", - ".vscode-test" + ".vscode-test", + "out/**/*" ] } \ No newline at end of file