Code Monkey home page Code Monkey logo

jest-matcher-deep-close-to's Introduction

jest-matcher-deep-close-to

NPM version build status npm download

Extend jest to assert arrays and objects with approximate values.

Installation

$ npm i -D jest-matcher-deep-close-to

Usage

import { toBeDeepCloseTo,toMatchCloseTo } from 'jest-matcher-deep-close-to';
expect.extend({toBeDeepCloseTo, toMatchCloseTo});

describe('test myModule', () => {
    it('should return 42', () => {
        expect([42.0003]).toBeDeepCloseTo([42.0004], 3);
    });
});

describe('test myModule', () => {
    it('should return 42', () => {
        expect({ foo: 42.0003,  bar: "xxx", baz: "yyy"})
            .toMatchCloseTo({ foo: 42.004, bar: "xxx" }, 3);
    });
});

License

MIT

jest-matcher-deep-close-to's People

Contributors

clawconduce avatar elliottconduce avatar github-actions[bot] avatar hsifnus avatar ianprime0509 avatar maasencioh avatar mancontr avatar natevecc avatar nixxquality avatar targos avatar y0nd0 avatar yanick avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

jest-matcher-deep-close-to's Issues

Show more context to where the error is

In the regular jest .toEqual(), you see the line in the JSON that is off with all the surrounding JSON lines. In this package's .toBeDeepCloseTo() you only see the line in the JSON that doesn't match - with no context of where in the JSON it appears - not even the key.

Support setup via jest.config.js

To avoid having to add this boilerplate to each test file that uses the library:

import {toBeDeepCloseTo,toMatchCloseTo} from 'jest-matcher-deep-close-to';
expect.extend({toBeDeepCloseTo, toMatchCloseTo});

the expect.extend line could instead be added at the bottom of index.js in which case the expectations can be made globally available in a user's jest.config.js with something like:

module.exports = {
    setupFilesAfterEnv: [
        'jest-extended',  // https://github.com/jest-community/jest-extended
        'jest-matcher-deep-close-to',  // https://github.com/maasencioh/jest-matcher-deep-close-to
        './jest-extensions',  // Our own extensions
    ],
}

I'd make a PR for this but I'm not set up for hacking on typescript code and this itch isn't annoying enough.

Unexpected difference from toBeCloseTo

This passes:

expect(0.25005635416666666).toBeCloseTo(0.25);

This fails:

expect([0.25005635416666666]).toBeDeepCloseTo([0.25]);

I would expect the two cases to work the same.

Add changelog

It would be nice if there were a changelog in the releases section to see what gets updated with each major/minor version

Add type definition file to the output

When I install this package via yarn or npm it doesn't contain any type definition file.
Would be nice to add it.

Something like this (based on your index.d.ts file):

declare module "jest-matcher-deep-close-to" {
    export function toBeDeepCloseTo(
        received: number | number[] | object,
        expected: number | number[] | object,
        decimals?: number
    ): {
        message(): string;
        pass: boolean;
    };
    export function toMatchCloseTo(
        received: number | number[] | object,
        expected: number | number[] | object,
        decimals?: number
    ): {
        message(): string;
        pass: boolean;
    };

    declare global {
        namespace jest {
            interface Matchers<R> {
                toBeDeepCloseTo: (expected: number | number[] | object, decimals?: number) => R;
                toMatchCloseTo: (expected: number | number[] | object, decimals?: number) => R;
            }
        }
    }
}

Be within x percent of?

I'm testing a lot of numbers that are the result of looped calculations and the further the go the more 'off' they will be, but still potentially acceptably.

I was thinking to test these a within percentage of sort of function would be great and since they're in objects I was happy to find your library. Wondered if you had any interest in extending it in that area..

I'm not sure of an equivalent name of a test to build off of though

Allow comparison of functions

The test currently fails if a function type is encountered in the nested object. This can become troublesome when we're comparing objects that contain class instances with those instances containing function definitions as well.

Can we add logic to compare functions using strict equality? I could create a PR for this if needed.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.