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);
});