Clean up childProcess tests and wrap in namespace

This commit is contained in:
TonyYang
2016-09-08 12:21:13 +08:00
committed by GitHub
parent ce5cb27b43
commit 4429e003ce

View File

@@ -717,8 +717,12 @@ namespace string_decoder_tests {
/// Child Process tests: https://nodejs.org/api/child_process.html ///
//////////////////////////////////////////////////////////////////////
childProcess.exec("echo test");
childProcess.spawnSync("echo test");
namespace child_process_tests {
{
childProcess.exec("echo test");
childProcess.spawnSync("echo test");
}
}
//////////////////////////////////////////////////////////////////////
/// cluster tests: https://nodejs.org/api/cluster.html ///