test_example.py 324 B

1234567891011
  1. from __future__ import absolute_import
  2. import pytest
  3. from tests.sentry.lang.javascript.test_example import ExampleTestCase
  4. from sentry.testutils import RelayStoreHelper, TransactionTestCase
  5. @pytest.mark.relay_store_integration
  6. class ExampleTestCaseRelay(RelayStoreHelper, TransactionTestCase, ExampleTestCase):
  7. pass