Open
Description
Upgrading has some tricky details (https://www.scala-js.org/news/2022/04/04/announcing-scalajs-1.10.0/) because we need to use the secure random library for running the app but the insecure one for tests, this occurs because the test environment doesn't have the crypto modules available.
We need either:
- A way to replace the secure random with the insecure one for testing.
- A way to switch our test environment so that it has the crypto modules available.