Repository: tinkerpop Updated Branches: refs/heads/TINKERPOP-1968 811df9bea -> 949cffec8
TINKERPOP-1968 Javascript doesn't handle embedded list assertions. Had to ignore this test for now. Project: http://git-wip-us.apache.org/repos/asf/tinkerpop/repo Commit: http://git-wip-us.apache.org/repos/asf/tinkerpop/commit/949cffec Tree: http://git-wip-us.apache.org/repos/asf/tinkerpop/tree/949cffec Diff: http://git-wip-us.apache.org/repos/asf/tinkerpop/diff/949cffec Branch: refs/heads/TINKERPOP-1968 Commit: 949cffec878acfc2a43df403f91aefa45c06f668 Parents: 811df9b Author: Stephen Mallette <[email protected]> Authored: Mon May 21 08:56:15 2018 -0400 Committer: Stephen Mallette <[email protected]> Committed: Mon May 21 08:56:35 2018 -0400 ---------------------------------------------------------------------- .../javascript/gremlin-javascript/test/cucumber/feature-steps.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/tinkerpop/blob/949cffec/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js ---------------------------------------------------------------------- diff --git a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js index c4eaebc..53f457d 100644 --- a/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js +++ b/gremlin-javascript/src/main/javascript/gremlin-javascript/test/cucumber/feature-steps.js @@ -55,12 +55,13 @@ const parsers = [ const ignoreReason = { lambdaNotSupported: 'Lambdas are not supported on gremlin-javascript', + embeddedListAssertion: '"This test returns an embedded list in the result and the Gherkin processor does not parse that correctly"', needsFurtherInvestigation: '', }; const ignoredScenarios = { // An associative array containing the scenario name as key, for example: - // 'g_V_branchXlabel_eq_person': new IgnoreError(ignoreReason.lambdaNotSupported), + 'g_V_asXa_bX_out_asXcX_path_selectXkeysX': new IgnoreError(ignoreReason.embeddedListAssertion), }; defineSupportCode(function(methods) {
