220404 TIL

leevshan·2022년 4월 7일
0

Jest

Open source developped by Facebook to test React files.

Main functions

describe("name of test group", () => {
	test("name of test", () => {
      expect(37).toBeEqual(37);
    }) // test function can be named "it"
})

There are many methods that can be used to test JS code.

profile
Planby 개발자

0개의 댓글