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