Skip to content

Commit 2f8f358

Browse files
committed
Treat "testing" and "-test" folders as TestRelated
1 parent 5d155d6 commit 2f8f358

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

cypher/Typescript_Enrichment/Mark_test_modules.cypher

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ MATCH (m:Module)
44
WITH m
55
,(m.globalFqn contains '/__tests__/') OR
66
(m.globalFqn contains '/test/') OR
7+
(m.globalFqn contains '/testing/') OR
8+
(m.globalFqn contains '-tests/') OR
79
(m.globalFqn contains '/tests/') AS isInTestFolder
810
,(m.globalFqn contains '/__mocks__/') OR
911
(m.globalFqn contains '/mock/') OR

0 commit comments

Comments
 (0)