Releases: mattphillips/jest-each
Releases · mattphillips/jest-each
v0.5.0
v0.4.0
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
Patch
- Add demo to readme
- Update project badges
v0.3.0
Minor
- Add parameterised test suite support with aliases
.describe
.describe.only
.describe.skip
.xdescribe
.fdescribe
v0.2.0
Add support for:
.xit
skips it.fit
only run test.xtest
skip test
Add `it` alias
Add support for:
.it
.it.skip
.it.only
First release of 0.0.1
Add license to readme 🕵