Skip to content

Commit 611389d

Browse files
committed
fix(filter): typo taret -> target
1 parent 4b80566 commit 611389d

File tree

1 file changed

+12
-2
lines changed

1 file changed

+12
-2
lines changed

lua/neotest-kotlin/filter.lua

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
local M = {}
22

3-
local ignored_directories =
4-
{ "docs", "build", "out", "generated", ".gradle", "main", ".idea", "buildSrc", "kapt", "taret" }
3+
local ignored_directories = {
4+
"docs",
5+
"build",
6+
"out",
7+
"generated",
8+
".gradle",
9+
"main",
10+
".idea",
11+
"buildSrc",
12+
"kapt",
13+
"target",
14+
}
515

616
-- This filters out non-test directories that would bog down scnanning.
717
---@param path string Name of directory

0 commit comments

Comments
 (0)