I have a large audio file data set that I am testing using the following convo file:
MyIntent
#me
MEDIA audiofiles/MyIntent/*.wav
#bot
INTENT MyIntent
However, since I have 10000 .wav files, this test is taking a very long time - roughly 2 secs per wav = ~ 5.5 hours!
I have a way to workaround this, by splitting this into 10000 separate convo files and running the tests in parallel with jest. However it feels a little overkill!
Is there a way to achieve parallelity for this usecase without inflating the size of my codebase massively?
Thanks