File tree Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Expand file tree Collapse file tree 1 file changed +45
-0
lines changed Original file line number Diff line number Diff line change
1
+ # neotest-kotlin
2
+
3
+ This is an adapter for the neotest project. This gives you the ability to see and run your tests within neovim.
4
+
5
+ ``` lua
6
+ require (" neotest" ).setup ({
7
+ adapters = {
8
+ require (" codymikol/neotest-kotlin" ),
9
+ }
10
+ })
11
+ ```
12
+ ```
13
+
14
+ This is currently in development, here is a roadmap of planned support for this plugin and the current status
15
+
16
+ ### Build Tooling
17
+
18
+ - [x] Gradle
19
+ - [ ] Maven
20
+
21
+ ### Test Frameworks
22
+
23
+ - [x] Kotest - DescribeSpec
24
+ - [ ] Kotest - FunSpec
25
+ - [ ] Kotest - AnnotationSpec
26
+ - [ ] Kotest - BehaviorSpec
27
+ - [ ] Kotest - FreeSpec
28
+ - [ ] Kotest - StringSpec
29
+ - [ ] Kotest - WordSpec
30
+ - [ ] Kotest - ShouldSpec
31
+ - [ ] Kotest - ExpectSpec
32
+ - [ ] Kotest - FeatureSpec
33
+ - [ ] JUnit
34
+ - [ ] kotlin.test
35
+
36
+ ### Features
37
+
38
+ - [x] Display available test results
39
+ - [x] Run tests
40
+ - [x] Report result status
41
+ - [ ] Report failure output
42
+
43
+ ### Contributing
44
+
45
+ PRs and issues are always welcome, if you have any questions or need help, feel free to open a new discussion on this project.
You can’t perform that action at this time.
0 commit comments