We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 89a1c52 + 90425fd commit 2bf2ccaCopy full SHA for 2bf2cca
Tests/Dumper/ServerDumperTest.php
@@ -39,6 +39,10 @@ public function testDumpForwardsToWrappedDumperWhenServerIsUnavailable()
39
40
public function testDump()
41
{
42
+ if ('True' === getenv('APPVEYOR')) {
43
+ $this->markTestSkipped('Skip transient test on AppVeyor');
44
+ }
45
+
46
$wrappedDumper = $this->createMock(DataDumperInterface::class);
47
$wrappedDumper->expects($this->never())->method('dump'); // test wrapped dumper is not used
48
0 commit comments