Skip to content

Commit b391803

Browse files
committed
Disable browser JS testing
1 parent ad69d80 commit b391803

File tree

2 files changed

+4
-16
lines changed

2 files changed

+4
-16
lines changed

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
projectVersion=1.9.1
2-
projectChangelog=Remove legacy JavaScript testing stuff
1+
projectVersion=1.9.2
2+
projectChangelog=Disable browser JS testing
33

44
projectDescription=A Gradle plugin that simplifies the creation of %type% multiplatform Kotlin projects.
55

@@ -8,4 +8,4 @@ dokkaVersion=0.10.1
88
pluginPublishVersion=0.12.0
99
githubReleaseVersion=2.2.12
1010
androidBuildToolsVersion=3.6.3
11-
ideaExtVersion=0.8.1
11+
ideaExtVersion=0.8.1

multigradle/src/main/kotlin/net/pearx/multigradle/util/platform/JsPlatform.kt

Lines changed: 1 addition & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -17,18 +17,6 @@ class JsPlatformConfig(project: Project) : PlatformConfig(project)
1717
val JsPlatform = platform("js", listOf("jsTest"), { JsPlatformConfig(it) }) { ext ->
1818
kotlinMpp {
1919
js {
20-
browser {
21-
testTask {
22-
useKarma {
23-
useChromeHeadless()
24-
usePhantomJS()
25-
useFirefoxHeadless()
26-
useOpera()
27-
useSafari()
28-
useIe()
29-
}
30-
}
31-
}
3220
nodejs {
3321
testTask {
3422
useMocha()
@@ -53,4 +41,4 @@ val JsPlatform = platform("js", listOf("jsTest"), { JsPlatformConfig(it) }) { ex
5341
}
5442
}
5543
}
56-
}
44+
}

0 commit comments

Comments
 (0)