Multiplatfotm jsBrowserTest vs jsTest

Hi all,

Could someone tell me please what is difference between jsBrowserTest and jsTest - tasks defined by multiplatform 1.4.10 plugin?

I’m not 100% sure about that, but the former seems to run tests on the browser, whle the latter is for NodeJS.

This is analogous to those two blocks in the config:

kotlin {
    js(IR) {
        browser {
            // ...
        }
        nodejs {
            // ...
        }
    }
}