8000
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.
1 parent fd0d5b5 commit d5e624cCopy full SHA for d5e624c
src/Symfony/Component/VarDumper/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