Skip to content

Files

This branch is 1342 commits behind coderaiser/putout:master.

plugin-jest

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Apr 10, 2023
Apr 10, 2023
Jul 20, 2022
Jan 6, 2022
Apr 10, 2023
Apr 10, 2024
Apr 13, 2024
Apr 10, 2023
Jul 16, 2021
Mar 4, 2023
Sep 26, 2024

@putout/plugin-jest NPM version

Jest is a delightful JavaScript Testing Framework with a focus on simplicity.

(c) jestjs.io

🐊Putout plugin helps to migrate to latest Jest API.

Install

npm i @putout/plugin-jest -D

Rules

{
    "rules": {
        "jest": "on"
    }
}

❌ Example of incorrect code

jest.addMatchers({
    fail: (a, b, c) => {
        return {
            pass: false,
        };
    },
});

jest.resetModuleRegistry();
jest.runTimersToTime(1000);

✅ Example of correct code

expect.extend({
    fail: (a, b, c) => {
        return {
            pass: false,
        };
    },
});

jest.resetModules();
jest.advanceTimersByTime(1000);

License

MIT