Skip to content

Commit

Permalink
remove additional test
Browse files Browse the repository at this point in the history
  • Loading branch information
rochdev committed Nov 21, 2024
1 parent c30573f commit ee83860
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions tests/parametric/test_crashtracking.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,8 @@
@scenarios.parametric
@features.crashtracking
class Test_Crashtracking:
@missing_feature(context.library == "nodejs", reason="Only enabled for SSI by default")
def test_report_crash(self, test_agent, test_library):
test_library.crash()

event = test_agent.wait_for_telemetry_event("logs", wait_loops=400)
assert self.is_crash_report(test_library, event)

@pytest.mark.parametrize("library_env", [{"DD_CRASHTRACKING_ENABLED": "true"}])
def test_enable_crashtracking(self, test_agent, test_library):
def test_report_crash(self, test_agent, test_library):
test_library.crash()

event = test_agent.wait_for_telemetry_event("logs", wait_loops=400)
Expand Down

0 comments on commit ee83860

Please sign in to comment.