We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b61d846 commit 3186566Copy full SHA for 3186566
tests/test_demo.py
@@ -50,6 +50,14 @@ def clerk_client() -> Iterator[Clerk]:
50
yield client
51
52
53
+def test_clerk_client(clerk_client: Clerk):
54
+ """Really basic test that the clerk client is working."""
55
+ # NOTE: Getting a deprecation warning here, but not sure why...
56
+ # Warning message is not helpful.
57
+ existing = clerk_client.users.list(request={"email_address": [TEST_EMAIL]})
58
+ assert existing is not None
59
+
60
61
@pytest.fixture
62
def create_test_user(clerk_client: Clerk) -> User:
63
"""Creates (or checks already exists) a test clerk user.
0 commit comments