11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_cirequire('../common'); 31cb0ef41Sopenharmony_ciconst assert = require('assert'); 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_ci// check for existence 61cb0ef41Sopenharmony_ciassert(Object.hasOwn(process.config.variables, 'node_module_version')); 71cb0ef41Sopenharmony_ci 81cb0ef41Sopenharmony_ci// Ensure that `node_module_version` is an Integer > 0 91cb0ef41Sopenharmony_ciassert(Number.isInteger(process.config.variables.node_module_version)); 101cb0ef41Sopenharmony_ciassert(process.config.variables.node_module_version > 0); 11