()
| 38 | @pytest.mark.asyncio |
| 39 | @pytest.mark.skipif(API_KEY is None, reason="API_KEY is not set") |
| 40 | async def test_create_task_async(): |
| 41 | client = CapmonsterClient(API_KEY, timeout=30.0) |
| 42 | task_id = await client.create_task_async(task=DataDomeTask(websiteURL=WEBSITE_URL, metadata=METADATA)) |
| 43 | assert task_id != 0 |
nothing calls this directly
no test coverage detected