1
0
Fork 0
mirror of https://github.com/kou029w/jest-hands-on.git synced 2025-03-05 04:25:17 +00:00
jest-hands-on/templates/basic/toBe.test.js

6 lines
136 B
JavaScript
Raw Normal View History

2021-07-27 10:54:21 +09:00
/** @license https://github.com/facebook/jest/blob/master/LICENSE */
test("two plus two is four", () => {
expect(2 + 2).toBe(4);
});