@universal-packages/logger-jest
TypeScript icon, indicating that this package has built-in type declarations

1.1.2 • Public • Published

Logger Jest

npm version Testing codecov

Jest matchers for Logger testing.

Install

npm install @universal-packages/logger-jest

npm install @universal-packages/logger

Setup

Add the following to your jest.config.js or where you configure Jest:

module.exports = {
  setupFilesAfterEnv: ['@universal-packages/logger-jest']
}

Matchers

toHaveLogged

import { Logger } from '@universal-packages/logger'

it('should logged log', async () => {
  const logger = new Logger()

  logger.log({ level: 'INFO', message: 'Hello World' })

  expect(Logger).toHaveLogged({ level: 'INFO', message: 'Hello World' })
})

toHaveLoggedTotal

import { Logger } from '@universal-packages/logger'

it('should logged a total number of logs', async () => {
  const logger = new Logger()

  logger.log({ level: 'INFO', message: 'Hello World' })

  expect(Logger).toHaveLoggedTotal(1)
})

Typescript

In order for typescript to see the global types you need to reference the types somewhere in your project, normally ./src/globals.d.ts.

/// <reference types="@universal-packages/logger-jest" />

This library is developed in TypeScript and shipped fully typed.

Contributing

The development of this library happens in the open on GitHub, and we are grateful to the community for contributing bugfixes and improvements. Read below to learn how you can take part in improving this library.

License

MIT licensed.

Readme

Keywords

none

Package Sidebar

Install

npm i @universal-packages/logger-jest

Weekly Downloads

0

Version

1.1.2

License

MIT

Unpacked Size

9.66 kB

Total Files

9

Last publish

Collaborators

  • omarandstuff