to try this feature out i created a config like ``...
# gradle
t
to try this feature out i created a config like
Copy code
js {
        nodejs {}
        browser {
            testTask {
                useKarma {
                    useIe()
                    useSafari()
                    useFirefox()
                    useChrome()
                    useChromeCanary()
                    useChromeHeadless()
                    usePhantomJS()
                    useOpera()
                }
            }
        }
and under
commonTest
created a failing test. also i could see there are now
jsBrowserTest
and
jsNodeTest
gradle tasks. executing the
jsNodeTest
task the build fails as exepcted. but executing
jsBrowserTest
nothing fails. what am i missing?