web: add testUtils alias to gradle plugin (#1165)

This will allow to use the dependency like this:
`compose.web.testUtils`

Co-authored-by: Oleksandr Karpovich <oleksandr.karpovich@jetbrains.com>
This commit is contained in:
Oleksandr Karpovich
2021-09-20 16:41:22 +02:00
committed by GitHub
parent 626cba019a
commit 805797eb98

View File

@@ -153,6 +153,10 @@ class ComposePlugin : Plugin<Project> {
val widgets by lazy {
composeDependency("org.jetbrains.compose.web:web-widgets")
}
val testUtils by lazy {
composeDependency("org.jetbrains.compose.web:test-utils")
}
}
}