Introducing Socket Firewall: Free, Proactive Protection for Your Software Supply Chain.Learn More
Socket
Book a DemoInstallSign in
Socket

kidnap-console

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

kidnap-console

Capture and store a function's log outputs and return value, and stops its output from reaching the CLI. Makes console log testing a breeze.

latest
Source
npmnpm
Version
0.0.2
Version published
Maintainers
1
Created
Source

kidnap-console

  • Makes console log output testing a breeze.

  • Capture log output by wrapping functions that do console calls.

  • Stores both of the following from each wrapped function:

      • All values that get passed to console.log, console.warn, console.dir, or console.error;
      • Return value of the function.
  • Prevents log from displaying on the console

Purpose

  • Unit testing of console output
    • (None of the existing solutions to this were really working for me)

Installation

yarn add --dev kidnap-console

Or:

npm install --save-dev kidnap-console

Usage

Example 1:

// You can also import kidnapLogs or kidnapConsole. They are aliases.
import { blockLogOutput } from 'kidnap-console';

const capturedLogs = blockLogOutput(() => console.log('try to log this'));
// [[no output to console occurs]]

console.log(capturedLogs.stores.log);
// => ['try to log this']

Example 2:

function logThings() {
    console.dir('hello dir');
    console.log('hello log');
    console.warn('hello warn');
    console.error('hello error');
    return 'my return value';
}

const capturedLogs = blockLogOutput(logThings); 
// [[no output to console occurs]]

//
// Captures the return value of the function
//
console.log(capturedLogs.result);
// => 'my return value'

console.log(capturedLogs.stores.log);
// => ['hello log']

console.log(capturedLogs.stores.dir);
// => ['hello dir']

console.log(capturedLogs.stores.warn);
// => ['hello warn']

console.log(capturedLogs.stores.error);
// => ['hello error']

Keywords

testing

FAQs

Package last updated on 04 Apr 2017

Did you know?

Socket

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.

Install

Related posts