This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useEffect } from "react"; | |
export default function Card(props) { | |
useEffect(() => { | |
const timeoutID = setTimeout(() => { | |
props.onSelect(null); | |
}, 5000); | |
return () => { | |
clearTimeout(timeoutID); | |
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { render, unmountComponentAtNode } from "react-dom"; | |
import { act } from "react-dom/test-utils"; | |
import Card from "./card"; | |
jest.useFakeTimers(); | |
let container = null; | |
// 가독성을 위해 beforeEach, afterEach는 생략합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from "react"; | |
import { render, unmountComponentAtNode } from "react-dom"; | |
import { act } from "react-dom/test-utils"; | |
import pretty from "pretty"; | |
import Hello from "./hello"; | |
let container = null; | |
// 가독성을 위해 beforeEach, afterEach는 생략합니다. | |
// 생략된 코드는 위의 Setup/Teardown 부분에 있는 예시코드와 동일합니다. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import { act as domAct } from "react-dom/test-utils"; | |
import { act as testAct, create } from "react-test-renderer"; | |
// ... | |
let root; | |
domAct(() => { | |
testAct(() => { | |
root = create(<App />); | |
}); | |
}); | |
expect(root).toMatchSnapshot(); |
OlderNewer