node-opcua-basic-types
Advanced tools
Comparing version 0.1.0-4 to 0.1.0-5
{ | ||
"name": "node-opcua-basic-types", | ||
"version": "0.1.0-4", | ||
"version": "0.1.0-5", | ||
"description": "pure nodejs OPCUA SDK - module -basic-types", | ||
@@ -14,3 +14,3 @@ "main": "index.js", | ||
"node-opcua-guid": "^0.1.0-4", | ||
"node-opcua-nodeid": "^0.1.0-4", | ||
"node-opcua-nodeid": "^0.1.0-5", | ||
"node-opcua-status-code": "^0.1.0-4", | ||
@@ -17,0 +17,0 @@ "node-opcua-utils": "^0.1.0-4", |
@@ -670,3 +670,16 @@ "use strict"; | ||
}); | ||
describe("Int64", function () { | ||
it("should coerce an Int32 into Int64", function () { | ||
ec.coerceInt64(0xFF1000).should.eql([0x0, 0xFF1000]); | ||
}); | ||
it("should coerce an long number into Int64", function () { | ||
ec.coerceInt64(0x1020000000).should.eql([0x10, 0x20000000]); | ||
}); | ||
it("should coerce an long number into Int64", function () { | ||
ec.coerceInt64(0x100020000000).should.eql([0x1000, 0x20000000]); | ||
}); | ||
}); | ||
describe("DateTime",function() { | ||
@@ -673,0 +686,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
55049
1381
Updatednode-opcua-nodeid@^0.1.0-5