UNPKG

jest-fixed-default-reporter

Version:

Tiny wrapper around jest DefaultReporter that prints success messages to stdout

41 lines (40 loc) 1.37 kB
{ "name": "jest-fixed-default-reporter", "version": "2.0.1", "description": "Tiny wrapper around jest DefaultReporter that prints success messages to stdout", "main": "DefaultReporter.js", "scripts": { "inner-test1": "jest tests/inner/good.spec.js >tests/results/good_stdout.txt 2>tests/results/good_stderr.txt || true", "inner-test2": "jest tests/inner/bad.spec.js >tests/results/bad_stdout.txt 2>tests/results/bad_stderr.txt || true", "inner-test3": "jest tests/inner/mixed.spec.js >tests/results/mixed_stdout.txt 2>tests/results/mixed_stderr.txt || true", "inner-test": "npm run inner-test1 && npm run inner-test2 && npm run inner-test3", "test": "npm run inner-test && jest tests/check-results.spec.js" }, "repository": { "type": "git", "url": "git+https://github.com/lukaw3d/jest-fixed-default-reporter.git" }, "keywords": [ "jest", "jest-reporter" ], "author": "lukaw3d", "license": "MIT", "bugs": { "url": "https://github.com/lukaw3d/jest-fixed-default-reporter/issues" }, "homepage": "https://github.com/lukaw3d/jest-fixed-default-reporter#readme", "dependencies": { "@jest/reporters": "^26.6.2" }, "devDependencies": { "@types/node": "^15.3.0", "jest": "^26.6.3" }, "jest": { "reporters": [ "./DefaultReporter.js", "./SummaryReporter.js" ] } }