mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-02-01 06:08:38 +00:00
8 lines
172 B
JavaScript
8 lines
172 B
JavaScript
|
/** @license https://github.com/facebook/jest/blob/master/LICENSE */
|
||
|
|
||
|
const sum = require("./sum");
|
||
|
|
||
|
test("adds 1 + 2 to equal 3", () => {
|
||
|
expect(sum(1, 2)).toBe(3);
|
||
|
});
|