onBlur is not getting called in Jest Test Cases , React App











up vote
2
down vote

favorite












I have a component where I have written onBlur and onChange event handlers on an input type=text.



<input type="text" onBlur={ this.fetchProspectIdDetails } onChange={ this.handleProspectIdChange } name="prospectId" value={this.state.prospectId}></input>


When I am trying to write test cases for onchange it works



it('Testing empty Salesforce Id Check', () => { 
wrapper.find('input[name="prospectId"]')
.simulate('change', {target: {name: 'prospectId', value: ''}});
expect(wrapper.state('validSalesForceId')).toEqual(false);
});


But onBlur function i.e. fetchProspectIdDetails is not being called



it('Testing the ProspectId State', () => {
wrapper.find('input[name="prospectId"]')
.simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
expect(wrapper.state('prospectId')).toEqual('001G000000mIQIY');
});


What am I doing wrong ?










share|improve this question




















  • 1




    Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
    – Shubham Khatri
    Nov 21 at 7:22










  • By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
    – Atul kumar singh
    Nov 21 at 7:28










  • @Atulkumarsingh can you share the code for fetchProspectIdDetails?
    – brian-lives-outdoors
    Nov 22 at 2:59















up vote
2
down vote

favorite












I have a component where I have written onBlur and onChange event handlers on an input type=text.



<input type="text" onBlur={ this.fetchProspectIdDetails } onChange={ this.handleProspectIdChange } name="prospectId" value={this.state.prospectId}></input>


When I am trying to write test cases for onchange it works



it('Testing empty Salesforce Id Check', () => { 
wrapper.find('input[name="prospectId"]')
.simulate('change', {target: {name: 'prospectId', value: ''}});
expect(wrapper.state('validSalesForceId')).toEqual(false);
});


But onBlur function i.e. fetchProspectIdDetails is not being called



it('Testing the ProspectId State', () => {
wrapper.find('input[name="prospectId"]')
.simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
expect(wrapper.state('prospectId')).toEqual('001G000000mIQIY');
});


What am I doing wrong ?










share|improve this question




















  • 1




    Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
    – Shubham Khatri
    Nov 21 at 7:22










  • By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
    – Atul kumar singh
    Nov 21 at 7:28










  • @Atulkumarsingh can you share the code for fetchProspectIdDetails?
    – brian-lives-outdoors
    Nov 22 at 2:59













up vote
2
down vote

favorite









up vote
2
down vote

favorite











I have a component where I have written onBlur and onChange event handlers on an input type=text.



<input type="text" onBlur={ this.fetchProspectIdDetails } onChange={ this.handleProspectIdChange } name="prospectId" value={this.state.prospectId}></input>


When I am trying to write test cases for onchange it works



it('Testing empty Salesforce Id Check', () => { 
wrapper.find('input[name="prospectId"]')
.simulate('change', {target: {name: 'prospectId', value: ''}});
expect(wrapper.state('validSalesForceId')).toEqual(false);
});


But onBlur function i.e. fetchProspectIdDetails is not being called



it('Testing the ProspectId State', () => {
wrapper.find('input[name="prospectId"]')
.simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
expect(wrapper.state('prospectId')).toEqual('001G000000mIQIY');
});


What am I doing wrong ?










share|improve this question















I have a component where I have written onBlur and onChange event handlers on an input type=text.



<input type="text" onBlur={ this.fetchProspectIdDetails } onChange={ this.handleProspectIdChange } name="prospectId" value={this.state.prospectId}></input>


When I am trying to write test cases for onchange it works



it('Testing empty Salesforce Id Check', () => { 
wrapper.find('input[name="prospectId"]')
.simulate('change', {target: {name: 'prospectId', value: ''}});
expect(wrapper.state('validSalesForceId')).toEqual(false);
});


But onBlur function i.e. fetchProspectIdDetails is not being called



it('Testing the ProspectId State', () => {
wrapper.find('input[name="prospectId"]')
.simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
expect(wrapper.state('prospectId')).toEqual('001G000000mIQIY');
});


What am I doing wrong ?







javascript reactjs jasmine jestjs enzyme






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 21 at 7:29

























asked Nov 21 at 7:20









Atul kumar singh

109214




109214








  • 1




    Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
    – Shubham Khatri
    Nov 21 at 7:22










  • By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
    – Atul kumar singh
    Nov 21 at 7:28










  • @Atulkumarsingh can you share the code for fetchProspectIdDetails?
    – brian-lives-outdoors
    Nov 22 at 2:59














  • 1




    Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
    – Shubham Khatri
    Nov 21 at 7:22










  • By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
    – Atul kumar singh
    Nov 21 at 7:28










  • @Atulkumarsingh can you share the code for fetchProspectIdDetails?
    – brian-lives-outdoors
    Nov 22 at 2:59








1




1




Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
– Shubham Khatri
Nov 21 at 7:22




Probably that you are simuating change instead of blur wrapper.find('input[name="prospectId"]').simulate('blur', {target: {name: 'prospectId', value: '001G000000mIQIY'}});
– Shubham Khatri
Nov 21 at 7:22












By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
– Atul kumar singh
Nov 21 at 7:28




By mistake i have written change here in the blur test case. In the actual i have written blur , but it has not been called. I will edit the question, to correct that mistake.
– Atul kumar singh
Nov 21 at 7:28












@Atulkumarsingh can you share the code for fetchProspectIdDetails?
– brian-lives-outdoors
Nov 22 at 2:59




@Atulkumarsingh can you share the code for fetchProspectIdDetails?
– brian-lives-outdoors
Nov 22 at 2:59

















active

oldest

votes











Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});














 

draft saved


draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407041%2fonblur-is-not-getting-called-in-jest-test-cases-react-app%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown






























active

oldest

votes













active

oldest

votes









active

oldest

votes






active

oldest

votes
















 

draft saved


draft discarded



















































 


draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53407041%2fonblur-is-not-getting-called-in-jest-test-cases-react-app%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Sphinx de Gizeh

Dijon

Guerrita