Skip to content

Commit 6a3585f

Browse files
committed
test(SoarTest): Remove OS check for help option skip
- Remove the skip condition for the help option test on Windows. - This allows the test to run on Windows, ensuring coverage for that platform. - Updated to improve cross-platform compatibility for the Soar help option.
1 parent cf9f843 commit 6a3585f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/SoarTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424

2525
it('can get help', function (): void {
2626
expect(Soar::make())->help()->toContain('-version');
27-
})->group(__DIR__, __FILE__)->skip(OS::isWindows(), 'The help option of Soar is not supported on Windows.');
27+
})->group(__DIR__, __FILE__)/* ->skip(OS::isWindows(), 'The help option of Soar is not supported on Windows.') */;
2828

2929
it('can get help snapshot', function (): void {
3030
assertMatchesTextSnapshot(

0 commit comments

Comments
 (0)