WRidder/react-spa

View on GitHub
client/src/__tests__/jest-test.js

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * Simple function to verify Jest working
 */

function sum(value1, value2) {
  return value1 + value2;
}

describe('sum', function () {
  it('adds 1 + 2 to equal 3', function () {
    expect(sum(1, 2)).toBe(3);
  });
});