mikeb-meq
mikeb-meq
I had to patch the package to replace ```const percent = this.state.currentTime / this.state.duration;``` with ```const percent = this.state.duration === 0 ? 0 : this.state.currentTime / this.state.duration;``` in VideoPlayer.js since...
Thanks for building this great looking project and for the quick response! I will update here when I can dedicate some time to this, hopefully in the next few weeks.
Hi @ntt261298 - I was able to revisit this this week and have a [working implementation for the feature](https://github.com/mikeb-meq/jest-preview/pull/1). I needed to branch off the [0.3.1 tag](https://github.com/nvh95/jest-preview/releases/tag/v0.3.1) however since the...
Hi @ntt261298 - thank you for your quick reply - applying that patch locally allowed me to run everything from the latest alpha branch. As far as testing my feature,...
Hi @ntt261298 - thanks for the reply. I'm not sure what was causing the above error for me, but my project has a dependency on `"core-js": "2.6.9"` and I was...
@ntt261298 Okay, I pushed a commit to update that documentation.
@ntt261298 I apologize but I have been unable to spend extra time at my computer recently due to some health issues. Thank you for assistance with the CI problems. Let...