Files
continue/.continue/rules/intellij-plugin-test-execution.md
Patrick Erichsen c1a47858f3 fix: rule colocation uri logic (#7164)
* fix: rule colocation uri logic

* rename to `fileUri`

* fix: type errors

* fix test mocks

* Update slugs.test.ts
2025-08-15 10:00:17 -07:00

551 B

name, description, alwaysApply, globs
name description alwaysApply globs
IntelliJ Plugin Test Execution Guidelines for running IntelliJ plugin tests with Gradle false extensions/intellij/**/*Test.kt

Run IntelliJ plugin tests using Gradle with the fully qualified test class or method name:

Run test class

./gradlew test --tests "com.github.continuedev.continueintellijextension.unit.ApplyToFileHandlerTest"

Run specific test method

./gradlew test --tests "com.github.continuedev.continueintellijextension.unit.ApplyToFileHandlerTest.should*"