Jest를 사용하여 거절된 약속을 어떻게 테스트합니까? 코드 import { createUser } from '../services'; ... ... handleFormSubmit = () => { this.setState({ loading: true }); createUser() .then(() => { this.setState({ loading: false, }); }) .catch(e => { this.setState({ error: e, }); }); }; 시험 it('rejects...', () => { const Container = createUserContainer(CreateUser); const wrapper = shallow(); return wrapper.instance().hand..