More info here https://opensrc.mx/posts/getting-a-code-coverage-report-with-selenium/
cd react/
npm install
npm run dev
python -m env .venv
source .venv/bin/activate
pip install -r requirements.txt
python test_todo.py
mkdir -p react/.nyc_output
cp coverage1.json react/.nyc_output
cd react
npx -y nyc report
npx -y nyc report -r html
firefox coverage/index.html