From 1df594c0688ff2c12595b3f53c7147392cbb4918 Mon Sep 17 00:00:00 2001 From: James Titcumb Date: Tue, 4 Jun 2024 09:00:23 +0100 Subject: [PATCH] Temporarily skip error reporting integration tests as API key is not working --- tests/Integration/AgentTest.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/Integration/AgentTest.php b/tests/Integration/AgentTest.php index 5efab0e6..90f199d8 100644 --- a/tests/Integration/AgentTest.php +++ b/tests/Integration/AgentTest.php @@ -159,6 +159,7 @@ private function formatCapturedLogMessages(): string */ public function testUncaughtErrorsAreCapturedAndSentToScout(): void { + self::markTestSkipped('TEMPORARILY SKIPPED - API KEY UPDATE NEEDED'); // @todo remove $phpBinary = (new PhpExecutableFinder())->find(); $process = new Process([ @@ -195,6 +196,7 @@ public function testUncaughtErrorsAreCapturedAndSentToScout(): void */ public function testRecordedThrowablesAreSentToScout(): void { + self::markTestSkipped('TEMPORARILY SKIPPED - API KEY UPDATE NEEDED'); // @todo remove $this->setUpWithConfiguration(Config::fromArray([ ConfigKey::APPLICATION_NAME => self::APPLICATION_NAME, ConfigKey::MONITORING_ENABLED => true,