Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/nodejs/node
/ IsSuite
Function
IsSuite
tools/test.py:1567–1568 ·
view source on GitHub ↗
(path)
Source
from the content-addressed store, hash-verified
1565
1566
def
GetSuites(test_root):
1567
def
IsSuite(path):
1568
return
isdir(path) and exists(join(path,
'testcfg.py'
))
1569
return
[ f
for
f in os.listdir(test_root)
if
IsSuite(join(test_root, f)) ]
1570
1571
Callers
1
GetSuites
Function · 0.85
Calls
2
join
Function · 0.90
exists
Function · 0.85
Tested by
no test coverage detected
Used in the wild
real call sites across dependent graphs
searching dependent graphs…