fun javascriptTestInterceptor(): Unit
The annotation JsTest is intercepted by the kotlin.js compiler and invoked in the generated javascript code. We need to hook into this function to invoke our execution code which will run tests defined by kotest.
Kotest automatically installs a Javascript test-adapter to intercept calls to all tests so we can avoid passing this generating function to the underyling test framework so it doesn't appear in the test report.