Skip to content

Commit 3cd139c

Browse files
committed
Fix running tests with node 23.
This picks up the latest version of jsdoc which fixes the compatibility issue
1 parent 649f4d6 commit 3cd139c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ def tests(session: Session) -> None:
1414
(venvroot / "node_modules").mkdir()
1515
with session.chdir(venvroot):
1616
session.run(
17-
"npm", "i", "--no-save", "jsdoc@4.0.0", "typedoc@0.25", external=True
17+
"npm", "i", "--no-save", "jsdoc@4.0.4", "typedoc@0.25", external=True
1818
)
1919
session.run(
2020
"pytest",

0 commit comments

Comments
 (0)