Getting the message statement & function not covered for findIndex() & some branch is not covered as selectedGroup[0].desc.

I am getting the message statement & function not covered for findIndex() & some branch is not covered as selectedGroup[0].desc. Please guide me how to i write test case in this below code statement function & branch covered.

const updateCampaignGroup = async (id) => {
        let newArr = {
          id: parseInt(id),
          campaignGroupName:
            inputState.nameSelectedVal === ''
              ? selectedGroup[0].campaignGroupName
              : inputState.nameSelectedVal,
    
          campaignNumber: selectedCampaigns,
          goal:
            inputState.goalSelectedVal === ''
              ? selectedGroup[0].goal
              : inputState.goalSelectedVal,
          kpi:
            inputState.kpiSelectedVal === ''
              ? selectedGroup[0].kpi
              : inputState.kpiSelectedVal,
          desc:
            inputState.desSelectedVal === ''
              ? selectedGroup[0].desc
              : inputState.desSelectedVal,
          dailySpend: selectedCampaigns.length === 0 ? 0 : 450,
          createdAt: await new Date().toLocaleDateString('en-gb', {
            year: 'numeric',
            month: 'short',
            day: 'numeric',
          }),
          createdBy: JSON.parse(localStorage.getItem('okta-token-storage')).idToken
            .claims.name,
          dailySpendofTotal: selectedCampaigns.length === 0 ? 0 : 12,
           
        };
      
        const index = campaignGroupListing.findIndex((item) => item.id === parseInt(id));
        campaignGroupListing.splice(index, 1);
        campaignGroupListing.splice(index, 0, newArr);
        
        localStorage.setItem(
          'campaignGroupData',
          JSON.stringify(campaignGroupListing),
        );
        await setIsOpen(false);
        updateGroupListData(campaignGroupListing);
        toast({
          duration: 2000,
          position: 'top-right',
          status: 'success',
          title: 'Campaign group has been created successfully',
        });
        setInputState({
          nameSelectedVal: '',
          desSelectedVal: '',
          goalSelectedVal: '',
          kpiSelectedVal: '',
        });
      };
    
      const saveCampaignGroup = async () => {
        campaignGroupData.push({
          id: Math.floor(Math.random() * 100),
          campaignGroupName: inputState.nameSelectedVal,
          campaignNumber: selectedCampaigns,
          desc: inputState.desSelectedVal,
          createdAt: await new Date().toLocaleDateString('en-gb', {
            year: 'numeric',
            month: 'short',
            day: 'numeric',
          }),
          createdBy: JSON.parse(localStorage.getItem('okta-token-storage')).idToken
            .claims.name,
          goal: inputState.goalSelectedVal,
          kpi: inputState.kpiSelectedVal,
          dailySpend: selectedCampaigns.length === 0 ? '-' : 450,
          dailySpendofTotal: selectedCampaigns.length === 0 ? '-' : 12,
        });
        localStorage.setItem(
          'campaignGroupData',
          JSON.stringify(campaignGroupData),
        );
        await setIsOpen(false);
        updateGroupListData(campaignGroupData);
    
        toast({
          duration: 2000,
          position: 'top-right',
          status: 'success',
          title: 'Campaign group has been created successfully',
        });
        setInputState({
          nameSelectedVal: '',
          desSelectedVal: '',
          goalSelectedVal: '',
          kpiSelectedVal: '',
        });
      };

Firstly, welcome to the forums.

While we are primarily here to help people with their Free Code Camp progress, we are open to people on other paths, too. Some of what you are asking is pretty trivial in the Free Code Camp context, so you might find that if you’re not getting the instruction and material you need in your current studies, the FCC curriculum will really help you get started. At a modest guess I’d say investing a 4-5 hours working through the curriculum here will really pay off. You can find the curriculum at https://www.freecodecamp.org/learn.

With your current questions, we don’t have enough context to know what you already know or don’t know, so it is impossible to guide you without just telling you the answer (which we won’t do).

It is pretty typical on here for people to share a codepen / repl.it / jsfiddle example of what they have tried so that anyone helping has more of an idea of what help is actually helpful.

Please provide some example of what you’ve tried and I’m sure you’ll get more help.

Happy coding :slight_smile:


I’ve edited your post for readability. When you enter a code block into a forum post, please precede it with a separate line of three backticks and follow it with a separate line of three backticks to make it easier to read.

You can also use the “preformatted text” tool in the editor (</>) to add backticks around text.

See this post to find the backtick on your keyboard.
Note: Backticks (`) are not single quotes (’).

This topic was automatically closed 182 days after the last reply. New replies are no longer allowed.