1.31.1 • Published 7 years ago

@4geit/swg-reporter-helper v1.31.1

Weekly downloads
-
License
MIT
Repository
-
Last release
7 years ago

@4geit/swg-reporter-helper npm version


mocha custom spec reporter

Installation

  1. A recommended way to install @4geit/swg-reporter-helper is through npm package manager using the following command:
npm i @4geit/swg-reporter-helper --save

Or use yarn using the following command:

yarn add @4geit/swg-reporter-helper
  1. All you have to do is to import the @4geit/swg-reporter-helper package in your controller or mock file as below:
// ...
const swgReporterHelper = require('@4geit/swg-reporter-helper')
// ...

And use it with one of your endpoint controller as below:

// ...
module.exports = {
  // ...
  getItems: swgDestructuringParametersHelper(
    swgReporterHelper(
      ({ req, res }) => {
        // ...
      }
    )
  ),
  // ...
}