Skip to content

Commit 5e98902

Browse files
committed
Updated:
- Build settings
1 parent 79e5760 commit 5e98902

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle.kts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,11 @@ tasks {
133133
publishPlugin {
134134
dependsOn(patchChangelog)
135135
}
136+
137+
buildPlugin {
138+
group = "build"
139+
description = "Builds the plugin into a distributable ZIP file."
140+
}
136141
}
137142

138143
intellijPlatformTesting {

src/test/kotlin/org/jetbrains/plugins/colors_panel/MyPluginTest.kt

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import com.intellij.psi.xml.XmlFile
66
import com.intellij.testFramework.TestDataPath
77
import com.intellij.testFramework.fixtures.BasePlatformTestCase
88
import com.intellij.util.PsiErrorElementUtil
9-
import org.jetbrains.plugins.colors_panel.services.MyProjectService
9+
1010

1111
@TestDataPath("\$CONTENT_ROOT/src/test/testData")
1212
class MyPluginTest : BasePlatformTestCase() {
@@ -29,11 +29,6 @@ class MyPluginTest : BasePlatformTestCase() {
2929
myFixture.testRename("foo.xml", "foo_after.xml", "a2")
3030
}
3131

32-
fun testProjectService() {
33-
val projectService = project.service<MyProjectService>()
34-
35-
assertNotSame(projectService.getRandomNumber(), projectService.getRandomNumber())
36-
}
3732

3833
override fun getTestDataPath() = "src/test/testData/rename"
3934
}

0 commit comments

Comments
 (0)