TheRealSyler / jest-store-log

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

License:MIT License


Languages

Language:TypeScript 94.9%Language:JavaScript 5.1%