@@ -337,7 +337,6 @@ def test_get_functions_from_file(self, tmp_path):
337337 test_config = TestConfig (
338338 tests_root = str (tmp_path / "tests" ),
339339 project_root_path = str (tmp_path ),
340- test_framework = "jest" ,
341340 tests_project_rootdir = tmp_path / "tests" ,
342341 )
343342
@@ -372,7 +371,6 @@ def test_get_specific_function(self, tmp_path):
372371 test_config = TestConfig (
373372 tests_root = str (tmp_path / "tests" ),
374373 project_root_path = str (tmp_path ),
375- test_framework = "jest" ,
376374 tests_project_rootdir = tmp_path / "tests" ,
377375 )
378376
@@ -411,7 +409,6 @@ class Calculator {
411409 test_config = TestConfig (
412410 tests_root = str (tmp_path / "tests" ),
413411 project_root_path = str (tmp_path ),
414- test_framework = "jest" ,
415412 tests_project_rootdir = tmp_path / "tests" ,
416413 )
417414
@@ -451,7 +448,7 @@ def test_discover_all_js_functions(self, tmp_path):
451448 # Create a non-JS file that should be ignored
452449 (tmp_path / "readme.txt" ).write_text ("This is not code" )
453450
454- functions = get_all_files_and_functions (tmp_path , language = Language .JAVASCRIPT )
451+ functions = get_all_files_and_functions (tmp_path , ignore_paths = [], language = Language .JAVASCRIPT )
455452
456453 assert len (functions ) == 2
457454 all_names = set ()
@@ -473,7 +470,7 @@ def py_func():
473470}
474471""" )
475472
476- functions = get_all_files_and_functions (tmp_path , language = None )
473+ functions = get_all_files_and_functions (tmp_path , ignore_paths = [], language = None )
477474
478475 assert len (functions ) == 2
479476
0 commit comments