From a7ee1f2878ce7d70ddf6bda169f3a3539efd6993 Mon Sep 17 00:00:00 2001 From: Darren Gehring Date: Thu, 29 Apr 2021 12:18:37 -0700 Subject: [PATCH] Updated expected JS Unit Tests from 82 to 83. --- AmbrosiaTest/AmbrosiaTest/JS_Tests.cs | 2 +- AmbrosiaTest/JSCodeGen/ambrosiaConfig-schema.json | 11 ++++++++--- AmbrosiaTest/JSCodeGen/package-lock.json | 10 +++++----- AmbrosiaTest/JSCodeGen/package.json | 2 +- 4 files changed, 15 insertions(+), 10 deletions(-) diff --git a/AmbrosiaTest/AmbrosiaTest/JS_Tests.cs b/AmbrosiaTest/AmbrosiaTest/JS_Tests.cs index 4f6ca62..4282471 100644 --- a/AmbrosiaTest/AmbrosiaTest/JS_Tests.cs +++ b/AmbrosiaTest/AmbrosiaTest/JS_Tests.cs @@ -47,7 +47,7 @@ namespace AmbrosiaTest string testName = "jsnodeunittest"; string finishedString = "UNIT TESTS COMPLETE"; - string successString = "SUMMARY: 82 passed (100%), 0 failed (0%)"; + string successString = "SUMMARY: 83 passed (100%), 0 failed (0%)"; string logOutputFileName_TestApp = testName + "_TestApp.log"; // Launched all the unit tests for JS Node (npm run unittests) diff --git a/AmbrosiaTest/JSCodeGen/ambrosiaConfig-schema.json b/AmbrosiaTest/JSCodeGen/ambrosiaConfig-schema.json index 617a848..841145e 100644 --- a/AmbrosiaTest/JSCodeGen/ambrosiaConfig-schema.json +++ b/AmbrosiaTest/JSCodeGen/ambrosiaConfig-schema.json @@ -48,6 +48,12 @@ "type": "string", "description": "An override IPv4 address for the Immortal Coordinator (IC) to use instead of the local IPv4 address." }, + "icHostingMode" : { + "type": "string", + "enum": [ "Integrated", "Separated" ], + "description": "The hosting mode for the Immortal Coordinator (IC), which affects where and how the IC runs. If not explicitly set, the value will be computed based on the value provided for (or the omission of) 'icIPv4Address'.", + "default": "Integrated" + }, "useNetCore": { "type": "boolean", "description": "Whether to use .NET Core (instead of .Net Framework) to run the Immortal Coordinator (IC) [this is Windows-only option]. Defaults to false.", @@ -76,12 +82,11 @@ }, "appVersion": { "type": "number", - "description": "The nominal version of this Immortal instance. Used to identify the log sub-folder name (ie. <icInstanceName>_<appVersion>) that will be logged to (or read from, if debugStartCheckpoint is specified)." + "description": "The nominal version of this Immortal instance. Used to identify the log sub-folder name (ie. <icInstanceName>_<appVersion>) that will be logged to (or read from if debugStartCheckpoint is specified)." }, "upgradeVersion": { "type": "number", - "description": "The nominal version this Immortal instance should upgrade to at startup. Must be greater than 'appVersion' to trigger an upgrade, or 0 (meaning do not upgrade). Test the upgrade first by setting 'debugTestUpgrade' to true. Defaults to 0.", - "default": 0 + "description": "The nominal version this Immortal instance should upgrade (migrate) to at startup. Must be greater than 'appVersion' to trigger an upgrade. Test the upgrade first by setting 'debugTestUpgrade' to true." }, "activeCode": { "type": "string", diff --git a/AmbrosiaTest/JSCodeGen/package-lock.json b/AmbrosiaTest/JSCodeGen/package-lock.json index 931b44e..f7c05d7 100644 --- a/AmbrosiaTest/JSCodeGen/package-lock.json +++ b/AmbrosiaTest/JSCodeGen/package-lock.json @@ -5,9 +5,9 @@ "requires": true, "dependencies": { "@types/node": { - "version": "14.14.37", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.37.tgz", - "integrity": "sha512-XYmBiy+ohOR4Lh5jE379fV2IU+6Jn4g5qASinhitfyO71b/sCo6MKsMLF5tc7Zf2CE8hViVQyYSobJNke8OvUw==" + "version": "14.14.43", + "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.43.tgz", + "integrity": "sha512-3pwDJjp1PWacPTpH0LcfhgjvurQvrZFBrC6xxjaUEZ7ifUtT32jtjPxEMMblpqd2Mvx+k8haqQJLQxolyGN/cQ==" }, "ajv": { "version": "6.12.6", @@ -21,8 +21,8 @@ } }, "ambrosia-node": { - "version": "file:ambrosia-node-0.0.78.tgz", - "integrity": "sha512-U29kJK1ar8nFcdV5u27kNUFc5wsI+dpWiv32/qSaadc/J9Buf6KIkD0kDgTqnVaCo2+A4JdDQ7ooQd3lFSEHwQ==", + "version": "file:ambrosia-node-0.0.79.tgz", + "integrity": "sha512-XWOZhGMhc822WQ/11O0yrf7slWRuHuvOWmlSrs5XDJGvVW+mhDBQkoqvNu9OiKOxguijAYe1wBSq2Hi/ha0NKw==", "requires": { "@types/node": "^14.14.37", "azure-storage": "^2.10.3", diff --git a/AmbrosiaTest/JSCodeGen/package.json b/AmbrosiaTest/JSCodeGen/package.json index 0b81056..0165540 100644 --- a/AmbrosiaTest/JSCodeGen/package.json +++ b/AmbrosiaTest/JSCodeGen/package.json @@ -7,7 +7,7 @@ "name": "" }, "dependencies": { - "ambrosia-node": "file:ambrosia-node-0.0.78.tgz", + "ambrosia-node": "file:ambrosia-node-0.0.79.tgz", "typescript": "^4.2.4" } }