We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51e30f7 commit ca67bc7Copy full SHA for ca67bc7
test/v1/integer.test.js
@@ -65,4 +65,9 @@ describe('Integer', () => {
65
expect(Integer.MAX_SAFE_VALUE.add(999).toNumberOrInfinity()).toEqual(Number.POSITIVE_INFINITY);
66
});
67
68
+ it('type is exported', () => {
69
+ expect(neo4j.types.Integer).toBeDefined();
70
+ expect(neo4j.int(1) instanceof neo4j.types.Integer).toBeTruthy();
71
+ });
72
+
73
0 commit comments