mirror of
https://github.com/kou029w/jest-hands-on.git
synced 2025-02-01 06:08:38 +00:00
6 lines
136 B
JavaScript
6 lines
136 B
JavaScript
|
/** @license https://github.com/facebook/jest/blob/master/LICENSE */
|
||
|
|
||
|
test("two plus two is four", () => {
|
||
|
expect(2 + 2).toBe(4);
|
||
|
});
|