jest-store-log

Simple one class library to for storing the console output with jest

MIT 6 个版本
安装
npm install jest-store-log
yarn add jest-store-log
pnpm add jest-store-log
bun add jest-store-log
README

npmV min install githubLastCommit codecov circleci

Usage

test('TEST', () => {
  const log = new JestStoreLog();

  // test console.log
  console.log('hello world');
  expect(log.data).toBe(`hello world`);

  log.TestEnd(); // IMPORTANT call TestEnd at the end of your test.
});

License

Copyright (c) 2020 Leonard Grosoli Licensed under the MIT license.

版本列表
1.3.0 2020-11-10
1.2.0 2020-11-08
1.1.1 2020-11-06
1.1.0 2020-11-06
1.0.1 2020-02-02
1.0.0 2020-02-02