haleemur_ali
04/21/2023, 12:25 PMtest_core.pysinger_sdk.testing.tap_tests.py::TapStreamConnectionTestsinger_sdk.tap_base.py::Tap.run_connection_testtest_core.pyfrom singer_sdk.testing import get_standard_tap_tests
from tap_ukg_connect.tap import TapUKGConnect
SAMPLE_CONFIG = {
    "username": "api-user-name",
    "password": "api-key-secret",
    "us_customer_api_key": "customer-api-key",
    "api_url": "<http://mock-ukg-connect>"
}
def test_sdk_standard_tap_tests():
    """Run the built-in tap tests from the SDK."""
    tests = get_standard_tap_tests(TapUKGConnect, config=SAMPLE_CONFIG)
    for test in tests:
        breakpoint()
        test()