I use ava in combination with the testing framework nyc for my Electron app. After executing my tests I noticed that only files from the main process are captured.
My package.json
looks like this:
"ava-ts": "nyc --reporter=html --reporter=text ava-ts",
Can anyone explain me why that is and how to fix it? Thanks so much!