Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMyles Borins <mylesborins@google.com>2018-10-23 17:16:47 +0300
committerMyles Borins <mylesborins@google.com>2018-10-30 11:45:24 +0300
commitcd1193d9ed83c37a431a19ae33bbf5e25ec15d65 (patch)
treefbd10d6042ac3d4c6996329bcf224fd29e5ae089 /test
parent93335cb772f439e475ea9ea3bd7391f216e75c84 (diff)
2018-10-30 Version 10.13.0 'Dubnium' (LTS)
This release marks the transition of Node.js 10.x into Long Term Support (LTS) with the codename 'Dubnium'. The 10.x release line now moves in to "Active LTS" and will remain so until April 2020. After that time it will move in to "Maintenance" until end of life in April 2021. Notable Changes: This release only includes minimal changes necessary to fix known regressions prior to LTS. PR-URL: https://github.com/nodejs/node/pull/23831
Diffstat (limited to 'test')
-rw-r--r--test/parallel/test-process-release.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/parallel/test-process-release.js b/test/parallel/test-process-release.js
index 8b6bca9141b..019903d0932 100644
--- a/test/parallel/test-process-release.js
+++ b/test/parallel/test-process-release.js
@@ -15,6 +15,8 @@ if (versionParts[0] === '4' && versionParts[1] >= 2) {
assert.strictEqual(process.release.lts, 'Boron');
} else if (versionParts[0] === '8' && versionParts[1] >= 9) {
assert.strictEqual(process.release.lts, 'Carbon');
+} else if (versionParts[0] === '10' && versionParts[1] >= 13) {
+ assert.strictEqual(process.release.lts, 'Dubnium');
} else {
assert.strictEqual(process.release.lts, undefined);
}