Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

136
Views
How to Test function passed to children prop using jest

Below is my main component from which i am passing a function to children prop that will be accessible to its child modules:

import React from 'react';
import TestFunction from './testFunction';
const MainComponent = ({children, testId}) => {
const testFunc1 = (arg1) => {
const argObj = {};
argObj.arg1 = arg1;
argObj.testId = testId;
TestFunction(argObj);
}
return (
<div>{React.cloneElement(children, {testFunc: testFunc1})}</div>
)
}
MainComponent.propTypes = {
children: PropTypes.node.isRequired,
testId: PropTypes.string.isRequired,
}

This testFunc is accessed in different module which is not accessible. So on running npm run test, testFunc1 is not getting covered, I am not sure how to include this function in testing. We are using Jest to write test cases.

about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!