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 30ef95c commit 9118096Copy full SHA for 9118096
tests/Units/PlatformTest.php
@@ -107,7 +107,9 @@ public function testInstallBinary()
107
// Check vendor/bin symlink or copy
108
$vendorBinDir = $vendorDir . '/bin';
109
$symlinkPath = $vendorBinDir . '/volt-test';
110
-
+ if (PHP_OS_FAMILY === 'Windows') {
111
+ $symlinkPath .= '.exe';
112
+ }
113
$this->assertTrue(
114
file_exists($symlinkPath) || is_link($symlinkPath),
115
"Symlink or copy in vendor/bin directory was not created"
0 commit comments