From bd20eb0acb218c0ead8678a4407fad89f3e39b00 Mon Sep 17 00:00:00 2001 From: Brent Shaffer Date: Fri, 27 Sep 2024 14:56:34 -0600 Subject: [PATCH] feat(tests): organize workflows, add system tests (#7695) --- tests/System/E2ETest.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/tests/System/E2ETest.php b/tests/System/E2ETest.php index 003b82f..9611cd8 100644 --- a/tests/System/E2ETest.php +++ b/tests/System/E2ETest.php @@ -63,8 +63,10 @@ public function setUp(): void $this->debuggeeId = $data['debuggeeId']; }, 5, true); } - - public static function tearDownAfterClass(): void + /** + * @afterClass + */ + public static function tearDownTestFixtures(): void { self::deleteApp(); }