andreachild commented on code in PR #3168: URL: https://github.com/apache/tinkerpop/pull/3168#discussion_r2241140414
########## gremlin-javascript/src/main/javascript/gremlin-javascript/test/unit/graphson-test.js: ########## @@ -89,6 +89,12 @@ describe('GraphSONReader', function () { const result = reader.read(obj); assert.ok(result instanceof Date); }); + it('should parse OffsetDateTime', function() { + const obj = { "@type" : "gx:OffsetDateTime", "@value" : "2016-12-14T21:14:36.295Z" }; + const reader = new GraphSONReader(); + const result = reader.read(obj); + assert.ok(result instanceof Date); Review Comment: Can you add some verification of the day, month, year values etc? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@tinkerpop.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org