11cb0ef41Sopenharmony_ci'use strict'; 21cb0ef41Sopenharmony_ci 31cb0ef41Sopenharmony_ciconst chunk = parseInt(process.env.TEST_CHUNK) || 1000; 41cb0ef41Sopenharmony_ci 51cb0ef41Sopenharmony_cilet arr = []; 61cb0ef41Sopenharmony_cifunction runAllocation() { 71cb0ef41Sopenharmony_ci const str = JSON.stringify(process.config).slice(0, chunk); 81cb0ef41Sopenharmony_ci arr.push(str); 91cb0ef41Sopenharmony_ci setImmediate(runAllocation); 101cb0ef41Sopenharmony_ci} 111cb0ef41Sopenharmony_ci 121cb0ef41Sopenharmony_cisetImmediate(runAllocation); 13