Skip to content

Commit 8319bb6

Browse files
committed
fix js tests
1 parent e43057e commit 8319bb6

File tree

7 files changed

+154
-104
lines changed

7 files changed

+154
-104
lines changed

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ repos:
99
- id: isort
1010
name: isort
1111
- repo: https://github.com/pre-commit/mirrors-prettier
12-
rev: v3.0.0-alpha.4
12+
rev: v3.0.0-alpha.6
1313
hooks:
1414
- id: prettier

noxfile.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,11 @@ def check_javascript_types(session: Session) -> None:
209209
session.run("npm", "run", "check:types", external=True)
210210

211211

212+
@group.session
213+
def check_javascript_build(session: Session) -> None:
214+
session.run("npm", "run", "build", external=True)
215+
216+
212217
@group.session
213218
def build_javascript(session: Session) -> None:
214219
"""Build javascript client code"""

0 commit comments

Comments
 (0)