Jest Platform
https://jestjs.io/docs/jest-platform
jest-changed-files
Example
const {getChangedFilesForRoots} = require('jest-changed-files');
// print the set of modified files since last commit in the current repo
getChangedFilesForRoots(['./'], {
lastCommit: true,
}).then(result => console.log(result.changedFiles));jest-diff
Example
const {diff} = require('jest-diff');
const a = {a: {b: {c: 5}}};
const b = {a: {b: {c: 6}}};
const result = diff(a, b);
// print diff
console.log(result);jest-docblock
Example
jest-get-type
Example
jest-validate
Example
jest-worker
Example
pretty-format
Example
Last updated