in scripts/test.js [28:35]
function isInMercurialRepository() { try { execSync("hg --cwd . root", { stdio: "ignore" }); return true; } catch (e) { return false; } }