[Jest] Write data driven tests in Jest with test.each

Often, we end up creating multiple unit tests for the same unit of code to make sure it behaves as expected with varied input. This is a good practice, but it can be a little tedious to create what is essentially the same test multiple times. We copy a test, paste it and update the variables that matter. Maybe we do that several times. Then, if we need to update our tests, we update each copy of the test. The good news is, starting with version 23 of Jest, there is built-in support for creating data-driven tests. In this lesson we'll take a handful of unit tests and reduce them down to a single, data-driven test with the new test.each method in Jest. We'll also look at the alternate version of test.each that lets us use a tagged template literal to describe the data for our test.

Additional info:

In the Jest docs: https://facebook.github.io/jest/docs/en/api.html#testeachtable-name-fn

Jest cheatsheet: https://github.com/sapegin/jest-cheat-sheet#data-driven-tests-jest-23

describe('isPalindrome - each', () => {
  const data = [
    ['Racecar', true],
    ['Typewriter', false],
    ['rotor', true],
    ['kayak', true],
    ['Step on no pets', true]
  ];
  test.each(data)('isPalindrome(%s) --- %s', (input, expected) => {

    const result = isPalindrome(input);
    expect(result).toBe(expected)
  })
})

describe('isPalindrome - each template literal', () => {
  test.each`
  input           | expected
  ${'Racecar'}    | ${true}
  ${'Typewriter'} | ${false}
  ${'rotor'}      | ${true}
  `('isPalindrome("$input") - $expected', ({ input, expected }) => {
    const result = isPalindrome(input)
    expect(result).toBe(expected)
  })
})

猜你喜欢

转载自www.cnblogs.com/Answer1215/p/9291049.html