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 7d46e94 commit c3ebc5bCopy full SHA for c3ebc5b
tests/Command/Serve/NonExistsCurrentDirectory/NonExistsCurrentDirectoryServeTest.php
@@ -10,13 +10,16 @@
10
11
final class NonExistsCurrentDirectoryServeTest extends TestCase
12
{
13
+ /**
14
+ * @requires OS Linux
15
+ */
16
public function testBase(): void
17
18
$command = $this->application()->find('serve');
19
20
$commandCreate = new CommandTester($command);
21
- $directory = __DIR__ . DIRECTORY_SEPARATOR . 'test-dir';
22
+ $directory = __DIR__ . '/test-dir';
23
if (!file_exists($directory)) {
24
mkdir($directory);
25
}
0 commit comments