
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
douglasduteil...shelltest
Advanced tools
JS acceptance testing framework for CLI applications.
This framework is intended to serve as a friendly layer of abstraction for testing the stdout, stderr, and exit code of shell commands. It's like supertest, but for CLI apps.
npm install shelltest --save
shelltest()
.cmd("/usr/bin/my_command")
.expect('stdout', /^regex.match/)
.end();
it('should run the command', function(done){
shelltest()
.cmd("/usr/bin/my_command")
.expect('stdout', /^match/)
.expect(0)
.end(done);
});
Sets the command to be executed.
.cmd("/bin/my_command")
Adds an assertion. All assertions are evaluated when .end(fn) is called.
.expect('stderr', /^regex.match/) //Asserts stderr
.expect('stdout', 'string match') //Asserts stdout
.expect(0) //Asserts exit code
Sets child_process cwd option.
.cwd('/var')
Sets child_process env option.
.env({"PATH": "/usr/cust:/usr/bin"})
Sets child_process timeout option.
.timeout(10)
Sets child_process uid option.
.uid(0)
Sets child_process gid option.
.gid(0)
Executes command and evaluates assertions. end() will throw with no callback.
Callback is fired with fn(err, stdout, stderr) :
err: null or the assert or process errorstdout: the output stringstderr: the error string.end(callback_function)
FAQs
Acceptance testing framework for CLI applications
We found that douglasduteil...shelltest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.