컴포넌트 스냅숏 테스트
test('snapShot', () => {
const { container } = render(<Form name='bom'/>)
expect(container).
})회귀 테스트 발생시키기
test('snapShot : 변경되었는지 확인', () => {
const { container } = render(<Form name='bom1234'/>)
expect(container).toMatchSnapShot()
})스냅숏 갱신
npx jest --updateSnapshotLast updated