Skip to content

Releases: mattphillips/jest-each

v0.5.0

01 May 00:17
Compare
Choose a tag to compare

Minor

  • Add each.withGlobal function to allow other environments to inject a global object that meets jest-each's interface

v0.4.0

01 May 00:15
Compare
Choose a tag to compare

Minor

  • Add Tagged Template Literal support:
each`
  a    | b    | expected
  ${1} | ${1} | ${2}
  ${1} | ${2} | ${3}
  ${2} | ${1} | ${3}
`.test('returns $expected when adding $a to $b', ({ a, b, expected }) => {
  expect(a + b).toBe(expected);
});
  • Add table of contents
  • Add new demos
  • Remove unnecessary tests

v0.3.1

06 Sep 16:14
Compare
Choose a tag to compare

Patch

  • Add demo to readme
  • Update project badges

v0.3.0

06 Sep 15:30
Compare
Choose a tag to compare

Minor

  • Add parameterised test suite support with aliases
    • .describe
    • .describe.only
    • .describe.skip
    • .xdescribe
    • .fdescribe

v0.2.0

29 Mar 21:08
Compare
Choose a tag to compare

Add support for:

  • .xit skips it
  • .fit only run test
  • .xtest skip test

Add `it` alias

29 Mar 09:14
Compare
Choose a tag to compare

Add support for:

  • .it
  • .it.skip
  • .it.only

First release of 0.0.1

21 Mar 23:24
Compare
Choose a tag to compare
Add license to readme 馃暤