mix-n-matchers

Miscellaneous custom Jest matchers

MIT License

Downloads
2.5K
Stars
2

mix-n-matchers

Miscellaneous custom Jest matchers.

expect(mock).toHaveBeenCalledWithContext(expect.exactly(service));

expect(iterable).toContainSequence(1, 2, 3);

expect(getDirection()).toBeEnum(Direction);

expect(post).toEqual({
  id: expect.typeOf("string"),
  status: expect.oneOf(["pinned", "archived", undefined]),
});

See website for more information.